1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * 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('settings page smoke test', () => {
- const selector = {
- avatar: '.ant-space-align-center',
- pageContainer: '.ant-pro-page-container',
- grafanaURL: '#grafanaURL',
- notificationMessage: '.ant-notification-notice-message',
- explain: '.ant-form-item-explain',
- };
- const data = {
- invalidURL: 'httx://www.test.com',
- validURL: 'http://localhost:8000/routes/list',
- fetchURL: 'fetchURL',
- fetch: '@fetchURL',
- grafanaAddress: 'Grafana Address',
- grafanaExplanation1: 'Grafana address should begin with HTTP or HTTPS',
- grafanaExplanation2: 'Address is invalid',
- updateSuccessfully: 'Update Configuration Successfully',
- };
- beforeEach(() => {
- cy.login();
- });
- it('should visit settings page', function () {
- cy.visit('/');
- cy.get(selector.avatar).invoke('show').click('center');
- cy.contains('Settings').click();
- cy.url().should('contains', '/settings');
- cy.get(selector.pageContainer)
- .children()
- .should('contain', 'Setting')
- .and('contain', data.grafanaAddress)
- .and('contain', data.grafanaExplanation1);
- });
- it('should set a invalid url', function () {
- cy.visit('/');
- cy.get(selector.avatar).invoke('show').click('center');
- cy.contains('Settings').click();
- cy.url().should('contains', '/settings');
- cy.get(selector.grafanaURL).clear().type(data.invalidURL);
- cy.get(selector.explain).should('contain', data.grafanaExplanation2);
- });
- it('should set a accessible URL', function () {
- cy.visit('/');
- cy.get(selector.avatar).invoke('show').click('center');
- cy.contains('Settings').click();
- cy.url().should('contains', '/settings');
- cy.get(selector.grafanaURL).clear().type(data.validURL);
- cy.contains('Submit').click();
- cy.get(selector.notificationMessage).should('contain', data.updateSuccessfully);
- cy.intercept(data.validURL).as(data.fetchURL);
- cy.wait(data.fetch);
- cy.get(selector.pageContainer).children().should('contain', 'Dashboard');
- });
- });
|