-
Notifications
You must be signed in to change notification settings - Fork 394
Fix PSSA for Turkish culture and tests when culture is not en-US #1099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
010a862
57ab21c
dcfe1cf
5fea008
a8df05d
c33c38b
479ed3a
227b64f
cee22f9
079b98d
bd97fcb
6d28bcc
7ffbf65
9ae39ba
e6f4ca3
eae7ff0
50e6087
7540baf
db4af7b
e1752bc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -282,20 +282,19 @@ private bool AddProfileItem( | |
Debug.Assert(includeRuleList != null); | ||
Debug.Assert(excludeRuleList != null); | ||
|
||
switch (key.ToLower()) | ||
if (key.Equals("severity", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
case "severity": | ||
severityList.AddRange(values); | ||
break; | ||
case "includerules": | ||
includeRuleList.AddRange(values); | ||
break; | ||
case "excluderules": | ||
excludeRuleList.AddRange(values); | ||
break; | ||
default: | ||
return false; | ||
severityList.AddRange(values); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It strikes me that it would be simpler to just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, I agree, I''ve addressed that in this commit |
||
} | ||
else if (key.Equals("includerules", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
includeRuleList.AddRange(values); | ||
} | ||
else | ||
{ | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
|
@@ -509,75 +508,70 @@ private bool ParseProfileHashtable(Hashtable profile, PathIntrinsics path, IOutp | |
settings.Keys.CopyTo(settingsKeys, 0); | ||
foreach (var settingKey in settingsKeys) | ||
{ | ||
var key = settingKey.ToLower(); | ||
object value = settings[key]; | ||
switch (key) | ||
{ | ||
case "severity": | ||
case "includerules": | ||
case "excluderules": | ||
// value must be either string or collections of string or array | ||
if (value == null | ||
|| !(value is string | ||
|| value is IEnumerable<string> | ||
|| value.GetType().IsArray)) | ||
{ | ||
writer.WriteError( | ||
new ErrorRecord( | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongValueHashTable, value, key)), | ||
Strings.WrongConfigurationKey, | ||
ErrorCategory.InvalidData, | ||
profile)); | ||
hasError = true; | ||
break; | ||
} | ||
List<string> values = new List<string>(); | ||
if (value is string) | ||
{ | ||
values.Add(value as string); | ||
} | ||
else if (value is IEnumerable<string>) | ||
{ | ||
values.Union(value as IEnumerable<string>); | ||
} | ||
else if (value.GetType().IsArray) | ||
{ | ||
// for array case, sometimes we won't be able to cast it directly to IEnumerable<string> | ||
foreach (var val in value as IEnumerable) | ||
{ | ||
if (val is string) | ||
{ | ||
values.Add(val as string); | ||
} | ||
else | ||
{ | ||
writer.WriteError( | ||
new ErrorRecord( | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongValueHashTable, val, key)), | ||
Strings.WrongConfigurationKey, | ||
ErrorCategory.InvalidData, | ||
profile)); | ||
hasError = true; | ||
break; | ||
} | ||
} | ||
} | ||
AddProfileItem(key, values, severityList, includeRuleList, excludeRuleList); | ||
settings[key] = values; | ||
break; | ||
object value = settings[settingKey]; | ||
|
||
case "rules": | ||
break; | ||
|
||
default: | ||
if (settingKey.Equals("severity", StringComparison.InvariantCultureIgnoreCase) || | ||
settingKey.Equals("includerules", StringComparison.InvariantCultureIgnoreCase) || | ||
settingKey.Equals("excluderules", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
// value must be either string or collections of string or array | ||
if (value == null | ||
|| !(value is string | ||
|| value is IEnumerable<string> | ||
|| value.GetType().IsArray)) | ||
{ | ||
writer.WriteError( | ||
new ErrorRecord( | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongKeyHashTable, key)), | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongValueHashTable, value, settingKey)), | ||
Strings.WrongConfigurationKey, | ||
ErrorCategory.InvalidData, | ||
profile)); | ||
hasError = true; | ||
break; | ||
} | ||
var values = new List<string>(); | ||
if (value is string) | ||
{ | ||
values.Add(value as string); | ||
} | ||
else if (value is IEnumerable<string>) | ||
{ | ||
values.Union(value as IEnumerable<string>); | ||
} | ||
else if (value.GetType().IsArray) | ||
{ | ||
// for array case, sometimes we won't be able to cast it directly to IEnumerable<string> | ||
foreach (var val in value as IEnumerable) | ||
{ | ||
if (val is string) | ||
{ | ||
values.Add(val as string); | ||
} | ||
else | ||
{ | ||
writer.WriteError( | ||
new ErrorRecord( | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongValueHashTable, val, settingKey)), | ||
Strings.WrongConfigurationKey, | ||
ErrorCategory.InvalidData, | ||
profile)); | ||
hasError = true; | ||
break; | ||
} | ||
} | ||
} | ||
AddProfileItem(settingKey, values, severityList, includeRuleList, excludeRuleList); | ||
settings[settingKey] = values; | ||
} | ||
else if (settingKey.Equals("excluderules", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
writer.WriteError( | ||
new ErrorRecord( | ||
new InvalidDataException(string.Format(CultureInfo.CurrentCulture, Strings.WrongKeyHashTable, settingKey)), | ||
Strings.WrongConfigurationKey, | ||
ErrorCategory.InvalidData, | ||
profile)); | ||
hasError = true; | ||
} | ||
} | ||
return hasError; | ||
|
@@ -1843,7 +1837,7 @@ private IEnumerable<DiagnosticRecord> AnalyzeFile(string filePath) | |
if (File.Exists(filePath)) | ||
{ | ||
// processing for non help script | ||
if (!(Path.GetFileName(filePath).ToLower().StartsWith("about_") && Path.GetFileName(filePath).ToLower().EndsWith(".help.txt"))) | ||
if (!(Path.GetFileName(filePath).StartsWith("about_", StringComparison.InvariantCultureIgnoreCase) && Path.GetFileName(filePath).EndsWith(".help.txt", StringComparison.InvariantCultureIgnoreCase))) | ||
{ | ||
try | ||
{ | ||
|
Uh oh!
There was an error while loading. Please reload this page.