-
Notifications
You must be signed in to change notification settings - Fork 542
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add proxy-mirror plugin form (#1725)
- Loading branch information
Showing
7 changed files
with
294 additions
and
1 deletion.
There are no files selected for viewing
103 changes: 103 additions & 0 deletions
103
web/cypress/integration/consumer/create-consumer-with-proxy-mirror-form.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* 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. | ||
*/ | ||
/* eslint-disable no-undef */ | ||
|
||
context('Create and delete consumer with proxy-mirror plugin form', () => { | ||
beforeEach(() => { | ||
cy.login(); | ||
|
||
cy.fixture('selector.json').as('domSelector'); | ||
cy.fixture('data.json').as('data'); | ||
}); | ||
|
||
const selector = { | ||
host: "#host", | ||
alert: "[role=alert]" | ||
} | ||
|
||
it('should create consumer with proxy-mirror form', function () { | ||
cy.visit('/'); | ||
cy.contains('Consumer').click(); | ||
cy.get(this.domSelector.empty).should('be.visible'); | ||
cy.contains('Create').click(); | ||
// basic information | ||
cy.get(this.domSelector.username).type(this.data.consumerName); | ||
cy.get(this.domSelector.description).type(this.data.description); | ||
cy.contains('Next').click(); | ||
|
||
// config auth plugin | ||
cy.contains(this.domSelector.pluginCard, 'key-auth').within(() => { | ||
cy.contains('Enable').click({ | ||
force: true, | ||
}); | ||
}); | ||
cy.focused(this.domSelector.drawer).should('exist'); | ||
cy.get(this.domSelector.disabledSwitcher).click(); | ||
// edit codemirror | ||
cy.get(this.domSelector.codeMirror) | ||
.first() | ||
.then((editor) => { | ||
editor[0].CodeMirror.setValue( | ||
JSON.stringify({ | ||
key: 'test', | ||
}), | ||
); | ||
cy.contains('button', 'Submit').click(); | ||
}); | ||
|
||
cy.contains(this.domSelector.pluginCard, 'proxy-mirror').within(() => { | ||
cy.contains('Enable').click({ | ||
force: true, | ||
}); | ||
}); | ||
|
||
cy.focused(this.domSelector.drawer).should('exist'); | ||
|
||
// config proxy-mirror form with wrong host | ||
cy.get(selector.host).type('127.0.0.1:1999'); | ||
cy.get(selector.alert).contains('address needs to contain schema: http or https, not URI part'); | ||
cy.get(this.domSelector.drawer).within(() => { | ||
cy.contains('Submit').click({ | ||
force: true, | ||
}); | ||
}); | ||
cy.get(this.domSelector.notification).should('contain', 'Invalid plugin data'); | ||
cy.get(this.domSelector.notificationCloseIcon).click(); | ||
|
||
// config proxy-mirror form with correct host | ||
cy.get(selector.host).clear().type('http://127.0.0.1:1999'); | ||
cy.get(selector.alert).should('not.exist'); | ||
cy.get(this.domSelector.disabledSwitcher).click(); | ||
cy.get(this.domSelector.drawer).within(() => { | ||
cy.contains('Submit').click({ | ||
force: true, | ||
}); | ||
}); | ||
cy.get(this.domSelector.drawer).should('not.exist'); | ||
|
||
cy.contains('button', 'Next').click(); | ||
cy.contains('button', 'Submit').click(); | ||
cy.get(this.domSelector.notification).should('contain', this.data.createConsumerSuccess); | ||
}); | ||
|
||
it('should delete the consumer', function () { | ||
cy.visit('/consumer/list'); | ||
cy.contains(this.data.consumerName).should('be.visible').siblings().contains('Delete').click(); | ||
cy.contains('button', 'Confirm').click(); | ||
cy.get(this.domSelector.notification).should('contain', this.data.deleteConsumerSuccess); | ||
}); | ||
}); |
105 changes: 105 additions & 0 deletions
105
web/cypress/integration/route/create-route-with-proxy-mirror-form.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* 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. | ||
*/ | ||
/* eslint-disable no-undef */ | ||
|
||
context('Create and delete route with proxy-mirror form', () => { | ||
const selector = { | ||
host: "#host", | ||
alert: ".ant-form-item-explain" | ||
} | ||
|
||
beforeEach(() => { | ||
cy.login(); | ||
|
||
cy.fixture('selector.json').as('domSelector'); | ||
cy.fixture('data.json').as('data'); | ||
}); | ||
|
||
it('should create route with proxy-mirror form', function () { | ||
cy.visit('/'); | ||
cy.contains('Route').click(); | ||
cy.get(this.domSelector.empty).should('be.visible'); | ||
cy.contains('Create').click(); | ||
cy.contains('Next').click().click(); | ||
cy.get(this.domSelector.name).type('routeName'); | ||
cy.get(this.domSelector.description).type('desc'); | ||
cy.contains('Next').click(); | ||
|
||
cy.get(this.domSelector.nodes_0_host).type('127.0.0.1'); | ||
cy.contains('Next').click(); | ||
|
||
// config proxy-mirror plugin | ||
cy.contains('proxy-mirror').parents(this.domSelector.pluginCardBordered).within(() => { | ||
cy.get('button').click({ | ||
force: true | ||
}); | ||
}); | ||
|
||
cy.get(this.domSelector.drawer).should('be.visible').within(() => { | ||
cy.get(this.domSelector.disabledSwitcher).click(); | ||
cy.get(this.domSelector.checkedSwitcher).should('exist'); | ||
}); | ||
|
||
// config proxy-mirror form with wrong host | ||
cy.get(selector.host).type('127.0.0.1:1999'); | ||
cy.get(selector.alert).contains('address needs to contain schema: http or https, not URI part'); | ||
cy.get(this.domSelector.drawer).within(() => { | ||
cy.contains('Submit').click({ | ||
force: true, | ||
}); | ||
}); | ||
cy.get(this.domSelector.notification).should('contain', 'Invalid plugin data'); | ||
cy.get(this.domSelector.notificationCloseIcon).click(); | ||
|
||
// config proxy-mirror form with correct host | ||
cy.get(selector.host).clear().type('http://127.0.0.1:1999'); | ||
cy.get(selector.alert).should('not.exist'); | ||
cy.get(this.domSelector.disabledSwitcher).click(); | ||
cy.get(this.domSelector.drawer).within(() => { | ||
cy.contains('Submit').click({ | ||
force: true, | ||
}); | ||
}); | ||
cy.get(this.domSelector.drawer).should('not.exist'); | ||
|
||
cy.contains('button', 'Next').click(); | ||
cy.contains('button', 'Submit').click(); | ||
cy.contains(this.data.submitSuccess); | ||
|
||
// back to route list page | ||
cy.contains('Goto List').click(); | ||
cy.url().should('contains', 'routes/list'); | ||
}); | ||
|
||
it('should delete the route', function () { | ||
cy.visit('/routes/list'); | ||
const { | ||
domSelector, | ||
data | ||
} = this; | ||
|
||
cy.get(domSelector.name).clear().type('routeName'); | ||
cy.contains('Search').click(); | ||
cy.contains('routeName').siblings().contains('More').click(); | ||
cy.contains('Delete').click(); | ||
cy.get(domSelector.deleteAlert).should('be.visible').within(() => { | ||
cy.contains('OK').click(); | ||
}); | ||
cy.get(domSelector.notification).should('contain', data.deleteRouteSuccess); | ||
cy.get(domSelector.notificationCloseIcon).click(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* 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 React from 'react'; | ||
import type { FormInstance } from 'antd/es/form'; | ||
import { Form, Input } from 'antd'; | ||
import { useIntl } from 'umi'; | ||
|
||
type Props = { | ||
form: FormInstance; | ||
}; | ||
|
||
const FORM_ITEM_LAYOUT = { | ||
labelCol: { | ||
span: 4, | ||
}, | ||
wrapperCol: { | ||
span: 10 | ||
}, | ||
}; | ||
|
||
const ProxyMirror: React.FC<Props> = ({ form }) => { | ||
const { formatMessage } = useIntl(); | ||
|
||
return ( | ||
<Form | ||
form={form} | ||
{...FORM_ITEM_LAYOUT} | ||
> | ||
<Form.Item | ||
label="host" | ||
name="host" | ||
extra={formatMessage({ id: 'component.pluginForm.proxy-mirror.host.extra' })} | ||
tooltip={formatMessage({ id: 'component.pluginForm.proxy-mirror.host.tooltip' })} | ||
rules={[ | ||
{ | ||
pattern: new RegExp(/^http(s)?:\/\/[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+(:[0-9]{1,5})?$/, 'g'), | ||
message: formatMessage({ id: 'component.pluginForm.proxy-mirror.host.ruletip' }), | ||
} | ||
]} | ||
> | ||
<Input /> | ||
</Form.Item> | ||
</Form> | ||
); | ||
} | ||
|
||
export default ProxyMirror; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters