Skip to content
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

Create rule S5866[kotlin]: Case insensitive Unicode regular expressio… #425

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions rules/S5866/highlighting.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
=== Highlighting

The use of `Pattern.CASE_INSENTIVE` or the `i` in `(?i)` or `(?i:...)`

4 changes: 0 additions & 4 deletions rules/S5866/java/highlighting.adoc

This file was deleted.

25 changes: 0 additions & 25 deletions rules/S5866/java/metadata.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,2 @@
{
"title": "Case insensitive Unicode regular expressions should enable the “UNICODE_CASE” flag",
"type": "BUG",
"status": "ready",
"remediation": {
"func": "Constant\/Issue",
"constantCost": "3min"
},
"tags": [
"regex"
],
"extra": {
"replacementRules": [

],
"legacyKeys": [

]
},
"defaultSeverity": "Major",
"ruleSpecification": "RSPEC-5866",
"sqKey": "S5866",
"scope": "All",
"defaultQualityProfiles": [
"Sonar way"
]
}
4 changes: 2 additions & 2 deletions rules/S5866/java/rule.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ ifdef::env-github,rspecator-view[]
== Implementation Specification
(visible only on this page)

include::message.adoc[]
include::../message.adoc[]

include::highlighting.adoc[]
include::../highlighting.adoc[]

endif::env-github,rspecator-view[]
2 changes: 2 additions & 0 deletions rules/S5866/kotlin/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
40 changes: 40 additions & 0 deletions rules/S5866/kotlin/rule.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Enabling case-insensitive matching using `(?i)` within a regex will only apply to characters in the ASCII range. To include characters outside of this range, use the `RegexOption.IGNORE_CASE` flag. Alternatively, you can use `(?iu)` or `(?iU)` within the regex instead.

If not done, regular expressions involving non-ASCII letters will still handle those letters as being case sensitive.


== Noncompliant Code Example

----
Regex("(?i)söme pättern")
Regex("(?i:söme) pättern")

"(?i)söme pättern".toRegex()
"(?i:söme) pättern".toRegex()
----


== Compliant Solution

----
Regex("söme pättern", RegexOption.IGNORE_CASE)
Regex("(?iu)söme pättern")
Regex("(?iu:söme) pättern")

"söme pättern".toRegex(RegexOption.IGNORE_CASE)
"(?iu)söme pättern".toRegex()
"(?iu:söme) pättern".toRegex()
----


ifdef::env-github,rspecator-view[]

'''
== Implementation Specification
(visible only on this page)

include::../message.adoc[]

include::../highlighting.adoc[]

endif::env-github,rspecator-view[]
File renamed without changes.
25 changes: 25 additions & 0 deletions rules/S5866/metadata.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
{
"title": "Case insensitive Unicode regular expressions should enable the “UNICODE_CASE” flag",
"type": "BUG",
"status": "ready",
"remediation": {
"func": "Constant\/Issue",
"constantCost": "3min"
},
"tags": [
"regex"
],
"extra": {
"replacementRules": [

],
"legacyKeys": [

]
},
"defaultSeverity": "Major",
"ruleSpecification": "RSPEC-5866",
"sqKey": "S5866",
"scope": "All",
"defaultQualityProfiles": [
"Sonar way"
]
}