diff --git a/tests/05_sc_workflow_event_kafka.yml b/tests/05_sc_workflow_event_kafka.yml index 7c5b307da6..72e75f9fb8 100644 --- a/tests/05_sc_workflow_event_kafka.yml +++ b/tests/05_sc_workflow_event_kafka.yml @@ -13,7 +13,6 @@ testcases: - name: import integrations steps: - - script: {{.cdsctl}} -f {{.cdsctl.config}} admin integration-model import ./fixtures/integrations/kafka-public.yml - script: {{.cdsctl}} -f {{.cdsctl.config}} project integration import ITSCWRKFLW18 ./fixtures/integrations/kafka.yml - script: {{.cdsctl}} -f {{.cdsctl.config}} project integration import ITSCWRKFLW18 ./fixtures/integrations/kafka-hook.yml @@ -40,15 +39,6 @@ testcases: retry: 30 delay: 10 -- name: check event in topic test.eventspublic - steps: - - script: kafkacat -b localhost:9092 -t test.eventspublic -C -o -1 -c 1 - assertions: - - result.code ShouldEqual 0 - - "result.systemoutjson.type_event ShouldContainSubstring sdk.EventRunWorkflowJob" - retry: 30 - delay: 10 - - name: check workflow steps: - script: {{.cdsctl}} -f {{.cdsctl.config}} workflow status ITSCWRKFLW18 ITSCWRKFLW18-WORKFLOW 1 --format json diff --git a/tests/fixtures/integrations/kafka-public.yml b/tests/fixtures/integrations/kafka-public.yml deleted file mode 100644 index 6cc403cbd9..0000000000 --- a/tests/fixtures/integrations/kafka-public.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: myPublicKafkaIntegration -event: true -public: true -public_configurations: - myPublicKafkaIntegration: - "broker url": - type: string - value: "localhost:9092" - "topic": - type: string - value: "test.eventspublic" - "username": - type: string - value: "" - "password": - type: password - value: "" - "disableTLS": - type: string - value: "true" - "disableSASL": - type: string - value: "true"