Skip to content

Commit a720188

Browse files
authored
Add extension module for testing with BLNS (#245)
1 parent 4f2ae80 commit a720188

File tree

19 files changed

+3918
-21
lines changed

19 files changed

+3918
-21
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ build/
88
logs/
99
!gradle/wrapper/gradle-wrapper.jar
1010
!docs/gradle/wrapper/gradle-wrapper.jar
11+
# kotlin-language-server
12+
kls_database.db

CHANGELOG.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
[discrete]
1111
=== Added
1212

13+
* https://github.com/serpro69/kotlin-faker/pull/245[#245] (:extension) Add extension for testing with BLNS
1314
* https://github.com/serpro69/kotlin-faker/pull/243[#243] (:core) Add collection element and map k/v type gen for random class instance
1415
* https://github.com/serpro69/kotlin-faker/pull/234[#234] (:extension) Add extension module for kotest property testing
1516
* https://github.com/serpro69/kotlin-faker/pull/232[#232] (:core) Add support for alternative primary key when resolving values

docs/src/orchid/resources/config.yml

+27-18
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ theme:
7272
- type: 'sourcedocModules'
7373
moduleType: 'kotlindoc'
7474
moduleGroup: 'faker-module'
75+
- type: separator
76+
- type: 'sourcedocModules'
77+
moduleType: 'kotlindoc'
78+
moduleGroup: 'faker-extension'
7579
- type: 'submenu'
7680
title: 'Information'
7781
icon: 'info-circle'
@@ -137,24 +141,29 @@ kotlindoc:
137141
itemTitleType: 'signature' # optional, one of [NAME, ID, SIGNATURE]
138142
includeItems: true # optional
139143
modules:
140-
- { name: 'Full Core API', slug: 'core-api', sourceDirs: [ './../../../../core/src/main/kotlin/', './../../../../core/src/main/java/' ], moduleGroup: 'core-api' }
141-
- { name: 'Core Data Provider API', slug: 'core-data-provider', sourceDirs: [ './../../../../core/src/main/kotlin/io/github/serpro69/kfaker/provider' ], moduleGroup: 'core-provider' }
142-
- { name: 'Books Provider API', slug: 'books-data-provider', sourceDirs: [ './../../../../faker/books/src/main/kotlin/io/github/serpro69/kfaker/books' ], moduleGroup: 'faker-module' }
143-
- { name: 'Commerce Provider API', slug: 'commerce-data-provider', sourceDirs: [ './../../../../faker/commerce/src/main/kotlin/io/github/serpro69/kfaker/commerce' ], moduleGroup: 'faker-module' }
144-
- { name: 'Creatures Provider API', slug: 'creatures-data-provider', sourceDirs: [ './../../../../faker/creatures/src/main/kotlin/io/github/serpro69/kfaker/creatures' ], moduleGroup: 'faker-module' }
145-
- { name: 'Databases Provider API', slug: 'databases-data-provider', sourceDirs: [ './../../../../faker/databases/src/main/kotlin/io/github/serpro69/kfaker/databases' ], moduleGroup: 'faker-module' }
146-
- { name: 'Edu Provider API', slug: 'edu-data-provider', sourceDirs: [ './../../../../faker/edu/src/main/kotlin/io/github/serpro69/kfaker/edu' ], moduleGroup: 'faker-module' }
147-
- { name: 'Games Provider API', slug: 'games-data-provider', sourceDirs: [ './../../../../faker/games/src/main/kotlin/io/github/serpro69/kfaker/games' ], moduleGroup: 'faker-module' }
148-
- { name: 'Humor Provider API', slug: 'humor-data-provider', sourceDirs: [ './../../../../faker/humor/src/main/kotlin/io/github/serpro69/kfaker/humor' ], moduleGroup: 'faker-module' }
149-
- { name: 'JapMedia Provider API', slug: 'japmedia-data-provider', sourceDirs: [ './../../../../faker/japmedia/src/main/kotlin/io/github/serpro69/kfaker/japmedia' ], moduleGroup: 'faker-module' }
150-
- { name: 'Lorem Provider API', slug: 'lorem-data-provider', sourceDirs: [ './../../../../faker/lorem/src/main/kotlin/io/github/serpro69/kfaker/lorem' ], moduleGroup: 'faker-module' }
151-
- { name: 'Misc Provider API', slug: 'misc-data-provider', sourceDirs: [ './../../../../faker/misc/src/main/kotlin/io/github/serpro69/kfaker/misc' ], moduleGroup: 'faker-module' }
152-
- { name: 'Movies Provider API', slug: 'movies-data-provider', sourceDirs: [ './../../../../faker/movies/src/main/kotlin/io/github/serpro69/kfaker/movies' ], moduleGroup: 'faker-module' }
153-
- { name: 'Music Provider API', slug: 'music-data-provider', sourceDirs: [ './../../../../faker/music/src/main/kotlin/io/github/serpro69/kfaker/music' ], moduleGroup: 'faker-module' }
154-
- { name: 'Sports Provider API', slug: 'sports-data-provider', sourceDirs: [ './../../../../faker/sports/src/main/kotlin/io/github/serpro69/kfaker/sports' ], moduleGroup: 'faker-module' }
155-
- { name: 'Tech Provider API', slug: 'tech-data-provider', sourceDirs: [ './../../../../faker/tech/src/main/kotlin/io/github/serpro69/kfaker/tech' ], moduleGroup: 'faker-module' }
156-
- { name: 'Travel Provider API', slug: 'travel-data-provider', sourceDirs: [ './../../../../faker/travel/src/main/kotlin/io/github/serpro69/kfaker/travel' ], moduleGroup: 'faker-module' }
157-
- { name: 'TvShows Provider API', slug: 'tvshows-data-provider', sourceDirs: [ './../../../../faker/tvshows/src/main/kotlin/io/github/serpro69/kfaker/tvshows' ], moduleGroup: 'faker-module' }
144+
# :core
145+
- { name: 'Full Core API', slug: 'core-api', sourceDirs: [ './../../../../core/src/main/kotlin/', './../../../../core/src/main/java/' ], moduleGroup: 'core-api' }
146+
- { name: 'Core Data Provider API', slug: 'core-data-provider', sourceDirs: [ './../../../../core/src/main/kotlin/io/github/serpro69/kfaker/provider' ], moduleGroup: 'core-provider' }
147+
# :faker
148+
- { name: 'Books Provider API', slug: 'books-data-provider', sourceDirs: [ './../../../../faker/books/src/main/kotlin/io/github/serpro69/kfaker/books' ], moduleGroup: 'faker-module' }
149+
- { name: 'Commerce Provider API', slug: 'commerce-data-provider', sourceDirs: [ './../../../../faker/commerce/src/main/kotlin/io/github/serpro69/kfaker/commerce' ], moduleGroup: 'faker-module' }
150+
- { name: 'Creatures Provider API', slug: 'creatures-data-provider', sourceDirs: [ './../../../../faker/creatures/src/main/kotlin/io/github/serpro69/kfaker/creatures' ], moduleGroup: 'faker-module' }
151+
- { name: 'Databases Provider API', slug: 'databases-data-provider', sourceDirs: [ './../../../../faker/databases/src/main/kotlin/io/github/serpro69/kfaker/databases' ], moduleGroup: 'faker-module' }
152+
- { name: 'Edu Provider API', slug: 'edu-data-provider', sourceDirs: [ './../../../../faker/edu/src/main/kotlin/io/github/serpro69/kfaker/edu' ], moduleGroup: 'faker-module' }
153+
- { name: 'Games Provider API', slug: 'games-data-provider', sourceDirs: [ './../../../../faker/games/src/main/kotlin/io/github/serpro69/kfaker/games' ], moduleGroup: 'faker-module' }
154+
- { name: 'Humor Provider API', slug: 'humor-data-provider', sourceDirs: [ './../../../../faker/humor/src/main/kotlin/io/github/serpro69/kfaker/humor' ], moduleGroup: 'faker-module' }
155+
- { name: 'JapMedia Provider API', slug: 'japmedia-data-provider', sourceDirs: [ './../../../../faker/japmedia/src/main/kotlin/io/github/serpro69/kfaker/japmedia' ], moduleGroup: 'faker-module' }
156+
- { name: 'Lorem Provider API', slug: 'lorem-data-provider', sourceDirs: [ './../../../../faker/lorem/src/main/kotlin/io/github/serpro69/kfaker/lorem' ], moduleGroup: 'faker-module' }
157+
- { name: 'Misc Provider API', slug: 'misc-data-provider', sourceDirs: [ './../../../../faker/misc/src/main/kotlin/io/github/serpro69/kfaker/misc' ], moduleGroup: 'faker-module' }
158+
- { name: 'Movies Provider API', slug: 'movies-data-provider', sourceDirs: [ './../../../../faker/movies/src/main/kotlin/io/github/serpro69/kfaker/movies' ], moduleGroup: 'faker-module' }
159+
- { name: 'Music Provider API', slug: 'music-data-provider', sourceDirs: [ './../../../../faker/music/src/main/kotlin/io/github/serpro69/kfaker/music' ], moduleGroup: 'faker-module' }
160+
- { name: 'Sports Provider API', slug: 'sports-data-provider', sourceDirs: [ './../../../../faker/sports/src/main/kotlin/io/github/serpro69/kfaker/sports' ], moduleGroup: 'faker-module' }
161+
- { name: 'Tech Provider API', slug: 'tech-data-provider', sourceDirs: [ './../../../../faker/tech/src/main/kotlin/io/github/serpro69/kfaker/tech' ], moduleGroup: 'faker-module' }
162+
- { name: 'Travel Provider API', slug: 'travel-data-provider', sourceDirs: [ './../../../../faker/travel/src/main/kotlin/io/github/serpro69/kfaker/travel' ], moduleGroup: 'faker-module' }
163+
- { name: 'TvShows Provider API', slug: 'tvshows-data-provider', sourceDirs: [ './../../../../faker/tvshows/src/main/kotlin/io/github/serpro69/kfaker/tvshows' ], moduleGroup: 'faker-module' }
164+
# :extension
165+
- { name: 'Blns Extension API', slug: 'blns-extension', sourceDirs: [ './../../../../extension/blns/src/main/kotlin/io/github/serpro69/kfaker/blns' ], moduleGroup: 'faker-extension' }
166+
- { name: 'Kotest Property Extension API', slug: 'kotest-property-extension', sourceDirs: [ './../../../../extension/kotest-property/src/main/kotlin/io/github/serpro69/kfaker/kotest' ], moduleGroup: 'faker-extension' }
158167

159168
snippets:
160169
sections:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
---
3+
4+
# Big List of Naughty Strings Extension
5+
6+
## TOC
7+
8+
- [About](#about)
9+
- [Usage](#usage)
10+
- [Installation](#installation)
11+
- [Generate Arb Extensions](#generate-arb-extensions)
12+
- [Random Class Instance ARBs](#random-class-instance-arb)
13+
14+
## About
15+
16+
Kotlin-faker `blns` artifact provides convenience functions for returning strings from [The Big List of Naughty Strings](https://github.com/minimaxir/big-list-of-naughty-strings) - a list of strings which have a high probability of causing issues when used as user-input data, and can therefore be quite useful in testing.
17+
18+
## Disclaimer
19+
20+
> The Big List of Naughty Strings is intended to be used for _software you own and manage_. Some of the Naughty Strings can indicate security vulnerabilities, and as a result using such strings with third-party software may be a crime. The maintainer is not responsible for any negative actions that result from the use of the list.
21+
>
22+
> Additionally, the Big List of Naughty Strings is not a fully-comprehensive substitute for formal security/penetration testing for your service.
23+
24+
## Usage
25+
26+
### Installation
27+
28+
- ① add the core `kotlin-faker` dependency to the test classpath
29+
- ② then add the dependency for the `kotlin-faker-blns` extension
30+
31+
{% tabs %}
32+
33+
{% kotlin "Kotlin" %}
34+
{% filter compileAs('md') %}
35+
36+
```kotlin
37+
dependencies {
38+
testImplementation("io.github.serpro69:kotlin-faker:$fakerVersion") //
39+
testImplementation("io.github.serpro69:kotlin-faker-blns:$fakerVersion") //
40+
}
41+
```
42+
43+
{% endfilter %}
44+
{% endkotlin %}
45+
46+
{% endtabs %}
47+
48+
{% btc %}{% endbtc %}
49+
50+
<br>
51+
52+
### Using the Big List of Naughty Strings
53+
54+
The `Blns` class provides properties and functions to get all strings, as well as a sublist of strings, and a single random string.
55+
56+
There is also corresponding functionality for getting base64-encoded strings.
57+
58+
For example, using [JUnit5 Parameterized Testing](https://junit.org/junit5/docs/current/user-guide/#writing-tests-parameterized-tests) capabilities:
59+
60+
- ① Create an instance of `Blns` class
61+
- ② Get `all` strings
62+
- ③ Get a `sublist` of strings
63+
- ④ Get a `random` string
64+
-`get` strings by a `Category`
65+
- ⑥ Test your inputs
66+
- Profit 💸
67+
68+
{% tabs %}
69+
70+
{% kotlin "Kotlin" %}
71+
{% filter compileAs('md') %}
72+
73+
```kotlin
74+
class Test {
75+
@ParameterizedTest
76+
@MethodSource("allStrings") //
77+
fun `test input with a naughty string`(s: String) {
78+
inputField.sendKeys(s) //
79+
}
80+
81+
companion object {
82+
private val blns = blns { /*faker configuration*/ } //
83+
@JvmStatic private fun allStrings() = blns.all.stream() //
84+
@JvmStatic private fun allBase64 () = blns.allBase64.stream() //
85+
@JvmStatic private fun sublist() = blns.sublist(10).stream() //
86+
@JvmStatic private fun sublistBase64() = blns.sublist(10, base64 = true).stream() //
87+
val randomString: String get() = blns.random() //
88+
val randomBase64String: String get() = blns.random(base64 = true) //
89+
val emojiStrings = blns.get(Category.EMOJI) //
90+
val emojiAndKaomojiStrings = blns.get(Category.EMOJI, Category.KAOMOJI) //
91+
val basicCategories = blns.get(Category.RESERVED, Category.NUMERIC, Category.SPECIAL) //
92+
}
93+
}
94+
```
95+
96+
{% endfilter %}
97+
{% endkotlin %}
98+
99+
{% endtabs %}
100+
101+
{% btc %}{% endbtc %}
102+
103+
<br>
104+
105+
## Credits
106+
107+
The input for this extension is maintained by [github.com/minimaxir](https://github.com/minimaxir) at https://github.com/minimaxir/big-list-of-naughty-strings.

docs/src/orchid/resources/wiki/extensions.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,27 @@ The extension modules require the [main `kotlin-faker` dependency]({{ link(colle
1313

1414
## ToC
1515

16+
- [BLNS](#blns)
1617
- [Kotest Property](#kotest-property)
1718

1819
<br>
1920

21+
## BLNS
22+
23+
Kotlin-faker `blns` artifact provides convenience functions for returning strings from [The Big List of Naughty Strings](https://github.com/minimaxir/big-list-of-naughty-strings) - a list of strings which have a high probability of causing issues when used as user-input data, and can therefore be quite useful in testing.
24+
25+
See the [Big List of Naughty Strings Extension]({{ link(collectionType='pages', collectionId='extensions', itemId='Blns Extension') }}) page for usage details.
26+
27+
{% btc %}{% endbtc %}
28+
29+
<br>
30+
2031
## Kotest Property
2132

22-
Kotlin-faker `kotest-property` and `kotest-property-ksp` artifacts provide faker-based [`Arb` generators](https://kotest.io/docs/proptest/property-test-generators.html) extensions via [KSP](https://kotlinlang.org/docs/ksp-overview.html) compiler plugin for [kotest property testing](https://kotest.io/docs/proptest/property-based-testing.html).
33+
`kotlin-faker-kotest-property` artifact extends [`Arb` generators](https://kotest.io/docs/proptest/property-test-generators.html) and provides an easy way to use kotlin-faker functionality with [kotest property testing](https://kotest.io/docs/proptest/property-based-testing.html).
2334

2435
See the [Kotest Property Extension]({{ link(collectionType='pages', collectionId='extensions', itemId='Kotest Property Extension') }}) page for usage details.
2536

26-
A full working example can also be found in the [kotest-property-test](https://github.com/serpro69/kotlin-faker/tree/master/extension/kotest-property-test) project.
27-
2837
{% btc %}{% endbtc %}
2938

3039
<br>

extension/blns/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# `kotlin-faker-blns`
2+
3+
[![Maven Central](https://img.shields.io/maven-central/v/io.github.serpro69/kotlin-faker-blns?style=for-the-badge)](https://search.maven.org/artifact/io.github.serpro69/kotlin-faker-blns)
4+
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.serpro69/kotlin-faker-blns?label=snapshot-version&server=https%3A%2F%2Foss.sonatype.org&style=for-the-badge&color=yellow)](#downloading)
5+
6+
`kotlin-faker-blns` module provides extensions for the [big-list-of-naughty-strings](https://github.com/minimaxir/big-list-of-naughty-strings), a list of strings which have a high probability of causing issues when used as user-input data, and can therefore be quite useful in testing.
7+
8+
## Usage
9+
10+
Documentation for this extension is available at [serpro69.github.io/kotlin-faker/](https://serpro69.github.io/kotlin-faker/extensions/blns-extension).

0 commit comments

Comments
 (0)