-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...main/kotlin/com/svenjacobs/app/leon/core/domain/sanitizer/wikipedia/WikipediaSanitizer.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Léon - The URL Cleaner | ||
* Copyright (C) 2023 Sven Jacobs | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.svenjacobs.app.leon.core.domain.sanitizer.wikipedia | ||
|
||
import android.content.Context | ||
import com.svenjacobs.app.leon.core.common.domain.matchesDomainRegex | ||
import com.svenjacobs.app.leon.core.common.regex.RegexFactory | ||
import com.svenjacobs.app.leon.core.domain.R | ||
import com.svenjacobs.app.leon.core.domain.sanitizer.RegexSanitizer | ||
import com.svenjacobs.app.leon.core.domain.sanitizer.Sanitizer | ||
import com.svenjacobs.app.leon.core.domain.sanitizer.SanitizerId | ||
|
||
class WikipediaSanitizer : | ||
RegexSanitizer( | ||
regex = RegexFactory.ofParameter("wprov"), | ||
) { | ||
|
||
override val id = SanitizerId("wikipedia") | ||
|
||
override fun getMetadata(context: Context) = Sanitizer.Metadata( | ||
name = context.getString(R.string.sanitizer_wikipedia_name), | ||
) | ||
|
||
override fun matchesDomain(input: String) = input.matchesDomainRegex( | ||
domain = "(.*\\.)?wikipedia.org", | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
.../kotlin/com/svenjacobs/app/leon/core/domain/sanitizer/wikipedia/WikipediaSanitizerTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Léon - The URL Cleaner | ||
* Copyright (C) 2023 Sven Jacobs | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.svenjacobs.app.leon.core.domain.sanitizer.wikipedia | ||
|
||
import io.kotest.core.spec.style.WordSpec | ||
import io.kotest.matchers.shouldBe | ||
|
||
class WikipediaSanitizerTest : | ||
WordSpec( | ||
{ | ||
val sanitizer = WikipediaSanitizer() | ||
|
||
"invoke" should { | ||
|
||
"clean en.wikipedia.org URLs" { | ||
sanitizer("https://en.wikipedia.org/wiki/Kerosene?wprov=sfla1") shouldBe | ||
"https://en.wikipedia.org/wiki/Kerosene" | ||
} | ||
} | ||
|
||
"matchesDomain" should { | ||
|
||
"match wikipedia.org" { | ||
sanitizer.matchesDomain("https://wikipedia.org") shouldBe true | ||
} | ||
|
||
"match en.wikipedia.org" { | ||
sanitizer.matchesDomain("https://en.wikipedia.org") shouldBe true | ||
} | ||
|
||
"match m.en.wikipedia.org" { | ||
sanitizer.matchesDomain("https://de.m.wikipedia.org") shouldBe true | ||
} | ||
|
||
"don't match google.com" { | ||
sanitizer.matchesDomain("https://google.com") shouldBe false | ||
} | ||
} | ||
}, | ||
) |