muyangye commented on code in PR #2197: URL: https://github.com/apache/streampipes/pull/2197#discussion_r1403719699
########## ui/cypress/tests/adapter/enhancedDeleteAdapter.smoke.spec.ts: ########## @@ -0,0 +1,122 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import { AdapterBuilder } from '../../support/builder/AdapterBuilder'; +import { ConnectUtils } from '../../support/utils/connect/ConnectUtils'; +import { PipelineBuilder } from '../../support/builder/PipelineBuilder'; +import { PipelineElementBuilder } from '../../support/builder/PipelineElementBuilder'; +import { UserUtils } from '../../support/utils/UserUtils'; +import { PipelineUtils } from '../../support/utils/PipelineUtils'; + +const adapterName = 'simulator'; + +const adapterInput = AdapterBuilder.create('Machine_Data_Simulator') + .setName(adapterName) + .addInput('input', 'wait-time-ms', '1000') + .build(); + +const pipelineInput = PipelineBuilder.create('Pipeline Test') + .addSource(adapterName) + .addProcessingElement( + PipelineElementBuilder.create('field_renamer') + .addInput('drop-down', 'convert-property', 'timestamp') + .addInput('input', 'field-name', 't') + .build(), + ) + .addSink( + PipelineElementBuilder.create('data_lake') + .addInput('input', 'db_measurement', 'demo') + .build(), + ) + .build(); + +describe('Test Enhanced Adapter Deletion', () => { + // In the beginning, create the non-admin user + before(() => { + cy.initStreamPipesTest(); + UserUtils.addUser(UserUtils.adapterAndPipelineAdminUser); + cy.logout(); + }); + + // After the last test, let admin user clean up (delete the adapter, associated pipelines, and the non-admin user) + after(() => { Review Comment: Oh that makes perfect sense! It's much better to have a really clean Streampipes instance every time before test. The only issue with the approach is that if we remove the cleanup code in my PR it can't be merged because later tests will fail. #2223 has to be done before merging my code. Since I believe #2223 only requires a simple change, if you don't mind solving 2 issues in 1 PR, I can implement the altogether in this PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
