From c2d0d537d8b1016d8eeeb481626d7ab975722f95 Mon Sep 17 00:00:00 2001 From: Oguzhan Soykan Date: Thu, 19 Dec 2024 10:35:02 +0100 Subject: [PATCH] chore: add kotest.properties to the libs --- .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + lib/stove-testing-e2e-http/build.gradle.kts | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/logback-test.xml | 20 +++++++++++++++++++ .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + .../src/test/resources/kotest.properties | 1 + 16 files changed, 35 insertions(+) create mode 100644 examples/ktor-example/src/test/resources/kotest.properties create mode 100644 examples/spring-example/src/test/resources/kotest.properties create mode 100644 examples/spring-standalone-example/src/test/resources/kotest.properties create mode 100644 examples/spring-streams-example/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-couchbase/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-elasticsearch/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-http/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-http/src/test/resources/logback-test.xml create mode 100644 lib/stove-testing-e2e-kafka/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-mongodb/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-rdbms-mssql/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-rdbms-postgres/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-redis/src/test/resources/kotest.properties create mode 100644 lib/stove-testing-e2e-wiremock/src/test/resources/kotest.properties create mode 100644 starters/spring/stove-spring-testing-e2e-kafka/src/test/resources/kotest.properties diff --git a/examples/ktor-example/src/test/resources/kotest.properties b/examples/ktor-example/src/test/resources/kotest.properties new file mode 100644 index 00000000..4104f72d --- /dev/null +++ b/examples/ktor-example/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.stove.ktor.example.e2e.Stove diff --git a/examples/spring-example/src/test/resources/kotest.properties b/examples/spring-example/src/test/resources/kotest.properties new file mode 100644 index 00000000..5a110c11 --- /dev/null +++ b/examples/spring-example/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.stove.spring.example.e2e.Stove diff --git a/examples/spring-standalone-example/src/test/resources/kotest.properties b/examples/spring-standalone-example/src/test/resources/kotest.properties new file mode 100644 index 00000000..29abd8b3 --- /dev/null +++ b/examples/spring-standalone-example/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.stove.spring.standalone.example.e2e.Stove diff --git a/examples/spring-streams-example/src/test/resources/kotest.properties b/examples/spring-streams-example/src/test/resources/kotest.properties new file mode 100644 index 00000000..ef486198 --- /dev/null +++ b/examples/spring-streams-example/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.stove.spring.streams.example.e2e.Stove diff --git a/lib/stove-testing-e2e-couchbase/src/test/resources/kotest.properties b/lib/stove-testing-e2e-couchbase/src/test/resources/kotest.properties new file mode 100644 index 00000000..4a24c7d5 --- /dev/null +++ b/lib/stove-testing-e2e-couchbase/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.couchbase.Stove diff --git a/lib/stove-testing-e2e-elasticsearch/src/test/resources/kotest.properties b/lib/stove-testing-e2e-elasticsearch/src/test/resources/kotest.properties new file mode 100644 index 00000000..0f327a5a --- /dev/null +++ b/lib/stove-testing-e2e-elasticsearch/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.elasticsearch.Stove diff --git a/lib/stove-testing-e2e-http/build.gradle.kts b/lib/stove-testing-e2e-http/build.gradle.kts index 4a8207a5..aa5d7451 100644 --- a/lib/stove-testing-e2e-http/build.gradle.kts +++ b/lib/stove-testing-e2e-http/build.gradle.kts @@ -15,6 +15,7 @@ dependencies { testImplementation(projects.lib.stoveTestingE2eWiremock) testImplementation(libs.jackson.jsr310) testImplementation(testFixtures(projects.lib.stoveTestingE2e)) + testImplementation(libs.logback.classic) } tasks.test.configure { diff --git a/lib/stove-testing-e2e-http/src/test/resources/kotest.properties b/lib/stove-testing-e2e-http/src/test/resources/kotest.properties new file mode 100644 index 00000000..74e7f840 --- /dev/null +++ b/lib/stove-testing-e2e-http/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.http.Stove diff --git a/lib/stove-testing-e2e-http/src/test/resources/logback-test.xml b/lib/stove-testing-e2e-http/src/test/resources/logback-test.xml new file mode 100644 index 00000000..a1e9ff6e --- /dev/null +++ b/lib/stove-testing-e2e-http/src/test/resources/logback-test.xml @@ -0,0 +1,20 @@ + + + + + + %white([%t]) %highlight(%-5level) %magenta(%c{1}) %cyan(trace.id:%X{traceId} version:%X{version}) - + %yellow(%m) %n + + + + + + + + + + + + + diff --git a/lib/stove-testing-e2e-kafka/src/test/resources/kotest.properties b/lib/stove-testing-e2e-kafka/src/test/resources/kotest.properties new file mode 100644 index 00000000..5e5a1a6e --- /dev/null +++ b/lib/stove-testing-e2e-kafka/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.standalone.kafka.setup.Stove diff --git a/lib/stove-testing-e2e-mongodb/src/test/resources/kotest.properties b/lib/stove-testing-e2e-mongodb/src/test/resources/kotest.properties new file mode 100644 index 00000000..6fdbd79e --- /dev/null +++ b/lib/stove-testing-e2e-mongodb/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.mongodb.Stove diff --git a/lib/stove-testing-e2e-rdbms-mssql/src/test/resources/kotest.properties b/lib/stove-testing-e2e-rdbms-mssql/src/test/resources/kotest.properties new file mode 100644 index 00000000..7fa890ec --- /dev/null +++ b/lib/stove-testing-e2e-rdbms-mssql/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.rdbms.mssql.Stove diff --git a/lib/stove-testing-e2e-rdbms-postgres/src/test/resources/kotest.properties b/lib/stove-testing-e2e-rdbms-postgres/src/test/resources/kotest.properties new file mode 100644 index 00000000..ac53713c --- /dev/null +++ b/lib/stove-testing-e2e-rdbms-postgres/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.rdbms.postgres.Stove diff --git a/lib/stove-testing-e2e-redis/src/test/resources/kotest.properties b/lib/stove-testing-e2e-redis/src/test/resources/kotest.properties new file mode 100644 index 00000000..3538f92b --- /dev/null +++ b/lib/stove-testing-e2e-redis/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.redis.Stove diff --git a/lib/stove-testing-e2e-wiremock/src/test/resources/kotest.properties b/lib/stove-testing-e2e-wiremock/src/test/resources/kotest.properties new file mode 100644 index 00000000..dfd99248 --- /dev/null +++ b/lib/stove-testing-e2e-wiremock/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.wiremock.Stove diff --git a/starters/spring/stove-spring-testing-e2e-kafka/src/test/resources/kotest.properties b/starters/spring/stove-spring-testing-e2e-kafka/src/test/resources/kotest.properties new file mode 100644 index 00000000..599cf072 --- /dev/null +++ b/starters/spring/stove-spring-testing-e2e-kafka/src/test/resources/kotest.properties @@ -0,0 +1 @@ +kotest.framework.config.fqn=com.trendyol.stove.testing.e2e.kafka.Setup