/// import "../support/commands" context('Services Tests', () => { beforeEach(() => { cy.restoreLocalStorageCache(); }); afterEach(() => { cy.saveLocalStorageCache(); }); // it('should go to setup Statping with Postgres', () => { // cy.visit('http://localhost:8080') // cy.get('select[name=db_connection]').select('postgres') // cy.get('input[name="db_host"]').clear().type(Cypress.env('DB_HOST')) // cy.get('input[name="db_port"]').clear().type('5432') // cy.get('input[name="db_user"]').clear().type(Cypress.env('DB_USER')) // if (Cypress.env('TRAVIS')==="yes") { // cy.get('input[name="db_password"]').clear() // } else { // cy.get('input[name="db_password"]').clear().type(Cypress.env('DB_PASS')) // } // cy.get('input[name="db_database"]').clear().type(Cypress.env('DB_DATABASE')) // cy.get('input[name="project"]').clear().type('Demo Tester') // cy.get('input[name="description"]').clear().type('This is a test from Crypress!') // cy.get('input[name="domain"]').clear().type('http://localhost:8080') // cy.get('input[name="username"]').clear().type('admin') // cy.get('input[name="email"]').clear().type('info@domain.com') // cy.get('input[name="password"]').clear().type('admin') // cy.scrollTo('bottom') // cy.get('#setup_button').click().wait(10000) // cy.get('.header-title').should('contain', 'Demo Tester') // cy.get('.header-desc').should('contain', 'This is a test from Crypress!') // cy.scrollTo('bottom') // cy.get('.service_li').should('have.length', 5) // cy.get('.card').should('have.length', 5) // }) it('should Login', () => { cy.visit('/login') cy.get('#username').clear().type('admin') cy.get('#password').clear().type('admin') cy.get('button[type="submit"]').click() cy.get('.navbar-brand').should('contain', 'Statping') cy.getCookies() cy.getCookies().should('have.length', 1) }) it('should goto services', () => { cy.visit('/dashboard/services') cy.get(':nth-child(1) > .card-body > .table > tbody > tr').should('have.length', 5) cy.get('.sortable_groups > tr').should('have.length', 3) }) it('should create new HTTP service', () => { cy.visit('/dashboard/create_service') cy.get(':nth-child(1) > .card-body > :nth-child(1) > .col-sm-8 > .form-control').clear().type('HTTP Service') cy.get('#service_type').select('http') cy.get('#service_url').clear().type('http://localhost:8888') cy.get('#service_response_code').clear().type('200') cy.get('#service_interval').clear().type('30') cy.get(':nth-child(3) > .card-body > :nth-child(2) > .col-sm-8 > .form-control').clear().type('5') cy.get('#permalink').clear().type('http_service') cy.get('#notify_after').clear().type('3') cy.get('button[type="submit"]').click() }) it('should create new TCP service', () => { cy.visit('/dashboard/create_service') cy.get(':nth-child(1) > .card-body > :nth-child(1) > .col-sm-8 > .form-control').clear().type('TCP Service') cy.get('#service_type').select('tcp') cy.get('#service_url').clear().type('localhost') cy.get('#service_port').clear().type('8888') cy.get('#service_interval').clear().type('30') cy.get(':nth-child(3) > .card-body > :nth-child(2) > .col-sm-8 > .form-control').clear().type('5') cy.get('#notify_after').clear().type('3') cy.get('#permalink').clear().type('tcp_service') cy.get('button[type="submit"]').click() }) it('should create new UDP service', () => { cy.visit('/dashboard/create_service') cy.get(':nth-child(1) > .card-body > :nth-child(1) > .col-sm-8 > .form-control').clear().type('UDP Service') cy.get('#service_type').select('udp') cy.get('#service_url').clear().type('8.8.8.8') cy.get('#service_port').clear().type('53') cy.get('#service_interval').clear().type('30') cy.get(':nth-child(3) > .card-body > :nth-child(2) > .col-sm-8 > .form-control').clear().type('5') cy.get('#notify_after').clear().type('3') cy.get('#permalink').clear().type('udp_service') cy.get('button[type="submit"]').click() }) it('should create new ICMP service', () => { cy.visit('/dashboard/create_service') cy.get(':nth-child(1) > .card-body > :nth-child(1) > .col-sm-8 > .form-control').clear().type('ICMP Service') cy.get('#service_type').select('icmp') cy.get('#service_url').clear().type('8.8.8.8') cy.get('#service_interval').clear().type('30') cy.get('#notify_after').clear().type('3') cy.get('#permalink').clear().type('icmp_service') cy.get('button[type="submit"]').click() }) })