Skip to content

Commit

Permalink
Correct namespace & names of test schema (#405)
Browse files Browse the repository at this point in the history
Co-authored-by: Andy Coates <[email protected]>
  • Loading branch information
big-andy-coates and Andy Coates authored Oct 14, 2024
1 parent ed58e14 commit 3bec34a
Show file tree
Hide file tree
Showing 26 changed files with 32 additions and 409 deletions.
14 changes: 0 additions & 14 deletions cli/provision.properties

This file was deleted.

8 changes: 0 additions & 8 deletions cli/resources/provision.properties

This file was deleted.

This file was deleted.

41 changes: 0 additions & 41 deletions cli/resources/schema/simple.schema_demo._public.user_checkout.yml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

120 changes: 0 additions & 120 deletions cli/resources/simple_schema_demo-api.yaml

This file was deleted.

116 changes: 0 additions & 116 deletions cli/resources/simple_spec_demo-api.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void shouldProvisionTopicsAndAclResourcesWithSchemas() throws Exception {
+ " --secret admin-secret"
+ " --schema-registry "
+ KAFKA_ENV.schemaRegistryServer()
+ " --schema-path ./resources"
+ " --schema-path ./src/test/resources"
+ " -Dsome.property=testOne"
+ " -Dsome.other.property=testTwo")
.split(" "));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void shouldProvisionTopicsAndAclResourcesWithNestedSchemasAndRepublishCorrectly(
+ " --secret admin-secret"
+ " --schema-registry "
+ KAFKA_ENV.schemaRegistryServer()
+ " --schema-path ./resources")
+ " --schema-path ./src/test/resources")
.split(" "));

// When:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;
import picocli.CommandLine;
import simple.schema_demo._public.user_signed_up_value.UserSignedUp;
import simple.schema_demo._public.UserSignedUp;

@SuppressFBWarnings({"UW_UNCOND_WAIT", "WA_NOT_IN_LOOP"})
class StorageConsumptionFunctionalTest {
Expand All @@ -90,7 +90,7 @@ void shouldGetStorageAndConsumptionMetrics() throws Exception {

Provisioner.builder()
.apiSpec(API_SPEC)
.schemaPath("./build/resources/test")
.schemaPath("./src/test/resources")
.adminClient(KAFKA_ENV.adminClient())
.closeAdminClient(true)
.schemaRegistryClient(KAFKA_ENV.srClient())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package simple.schema_demo._public.user_signed_up_value;
package simple.schema_demo._public;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Loading

0 comments on commit 3bec34a

Please sign in to comment.