small fixes as app has changed and skip some tests since app is still unstable

master
helenanull 4 years ago
parent c4a4913e7d
commit cd936b31c5

@ -5,6 +5,7 @@
"experimentalFetchPolyfill": true, "experimentalFetchPolyfill": true,
"env": { "env": {
"apiUrl": "https://conduit.productionready.io/api", "apiUrl": "https://conduit.productionready.io/api",
"newApiUrl": "https://api.realworld.io/api",
"device": "desktop", "device": "desktop",
"email": "test@test.com", "email": "test@test.com",
"password": "Cypress123" "password": "Cypress123"

@ -80,7 +80,7 @@ describe('Article', () => {
cy.get(editor.bodyField).clear() cy.get(editor.bodyField).clear()
.type(`Test can edit an article. ${seeMoreLink}`) .type(`Test can edit an article. ${seeMoreLink}`)
cy.get(editor.publishButton).click() cy.get(editor.publishButton).click()
cy.url().should('contain', '/article/article-created-by-cypress-test-') cy.url().should('contain', '/article/Article-created-by-Cypress-test-')
cy.get(article.title).should('be.visible') cy.get(article.title).should('be.visible')
cy.get(article.body).should('be.visible') cy.get(article.body).should('be.visible')
.and('have.text', `Test can edit an article. ${seeMoreLink}`) .and('have.text', `Test can edit an article. ${seeMoreLink}`)
@ -93,15 +93,16 @@ describe('Article', () => {
}) })
cy.get(article.title).should('be.visible') cy.get(article.title).should('be.visible')
cy.get(article.deleteButton).click() cy.get(article.deleteButton).click()
cy.wait('@deleteRequest').then((req) => { cy.wait('@deleteRequest')
expect(req.response.statusCode).to.eq(200)
})
cy.url().should('eq', `${Cypress.config('baseUrl')}/`) cy.url().should('eq', `${Cypress.config('baseUrl')}/`)
}) })
it('can favourite an article', function () { it.skip('can favourite an article', () => {
const apiUrl = Cypress.env('apiUrl') // TODO: remove skip and fix once app is stable
let slug = '' const apiUrl = Cypress.env('newApiUrl')
// create article to make sure there is at least one article to faviourite
cy.createArticle()
cy.intercept('POST', '/api/articles/*/favorite').as('addFavoriteReq') cy.intercept('POST', '/api/articles/*/favorite').as('addFavoriteReq')
cy.visit('') cy.visit('')
@ -109,16 +110,17 @@ describe('Article', () => {
// articles are always changing on home page // articles are always changing on home page
// we want to make sure we favorited the correct article // we want to make sure we favorited the correct article
// so we save the first article slug to compare later // so we save the first article slug to compare later
cy.get(home.readMoreLink).should('have.attr', 'href').then((link) => { cy.get(home.readMoreLink).should('have.attr', 'href').then((slug) => {
slug = link.split('/')[2] cy.get(home.firstFavoriteButton).click()
}) .should('have.css', 'background-color', 'rgb(92, 184, 92)')
cy.get(home.firstFavoriteButton).click() cy.wait('@addFavoriteReq')
.should('have.css', 'background-color', 'rgb(92, 184, 92)') cy.request('https://api.realworld.io/api/articles?limit=10&offset=0')
cy.wait('@addFavoriteReq') cy.pause()
// verify article was actually favorited // verify article was actually favorited
cy.request(`${apiUrl}/articles?favorited=${this.username}&limit=5&offset=0`).then((resp) => { cy.request(`${apiUrl}/articles?limit=10&offset=0`).then((resp) => {
expect(resp.body.articles[0].slug).to.eq(slug) expect(resp.body.articles[0].slug).to.eq(slug)
})
}) })
}) })
}) })

@ -1,6 +1,7 @@
import home from '../selectors/home.sel' import home from '../selectors/home.sel'
describe('Home page', () => { // TODO: remove skip and fix once app is stable
describe.skip('Home page', () => {
it('contains correct elements when logged out', () => { it('contains correct elements when logged out', () => {
cy.visit('') cy.visit('')
cy.get(home.globalFeedTab).should('be.visible') cy.get(home.globalFeedTab).should('be.visible')

@ -18,7 +18,8 @@ describe('Login', () => {
.and('contain', 'email or password is invalid') .and('contain', 'email or password is invalid')
}) })
it('can see error message when username and password fields are empty', () => { // TODO: remove skip and fix once app is stable
it.skip('can see error message when username and password fields are empty', () => {
cy.get(login.signInButton).click() cy.get(login.signInButton).click()
cy.get(login.errorMessages).should('be.visible') cy.get(login.errorMessages).should('be.visible')
.and('contain', 'email or password is invalid') .and('contain', 'email or password is invalid')

@ -28,7 +28,9 @@ describe('Register', () => {
}) })
it('check registration request body and response', function () { it('check registration request body and response', function () {
cy.intercept('/api/users').as('loginRequest') const apiUrl = Cypress.env('newApiUrl')
cy.intercept(`${apiUrl}/users`).as('loginRequest')
cy.get(registration.usernameField).type(this.username) cy.get(registration.usernameField).type(this.username)
cy.get(registration.emailField).type(this.email) cy.get(registration.emailField).type(this.email)
cy.get(registration.passwordField).type('Cypress12{enter}') cy.get(registration.passwordField).type('Cypress12{enter}')
@ -40,7 +42,6 @@ describe('Register', () => {
expect(xhr.request.body.user.username).to.eq(this.username) expect(xhr.request.body.user.username).to.eq(this.username)
// check response body // check response body
expect(xhr.response.body.user.email).to.eq(this.email) expect(xhr.response.body.user.email).to.eq(this.email)
expect(xhr.response.body.user.id).not.to.eq(null)
expect(xhr.response.body.user.token).not.to.eq(null) expect(xhr.response.body.user.token).not.to.eq(null)
}) })
cy.get(header.settingsLink).should('be.visible') cy.get(header.settingsLink).should('be.visible')

@ -1,7 +1,8 @@
import settings from '../selectors/settings.sel' import settings from '../selectors/settings.sel'
import profile from '../selectors/profile.sel' import profile from '../selectors/profile.sel'
describe('Settings', () => { // TODO: remove skip and fix once app is stable
describe.skip('Settings', () => {
beforeEach(() => { beforeEach(() => {
cy.register() cy.register()
cy.visit('/settings') cy.visit('/settings')
@ -13,7 +14,7 @@ describe('Settings', () => {
cy.get(settings.title).should('be.visible') cy.get(settings.title).should('be.visible')
.and('contain', 'Your Settings') .and('contain', 'Your Settings')
cy.get(settings.imageField).type(logoLink) cy.get(settings.imageField).clear().type(logoLink)
cy.get(settings.usernameField).clear().type(username) cy.get(settings.usernameField).clear().type(username)
cy.get(settings.bioField).type('update settings') cy.get(settings.bioField).type('update settings')
cy.get(settings.submitButton).click() cy.get(settings.submitButton).click()

@ -3,7 +3,7 @@ module.exports = {
globalFeedTab: '[ng-class*=all]', globalFeedTab: '[ng-class*=all]',
articles: 'article-list [ng-repeat*="ctrl.list"] .article-preview', articles: 'article-list [ng-repeat*="ctrl.list"] .article-preview',
sidebar: '.sidebar', sidebar: '.sidebar',
sidebarTags: '.sidebar .tag-default', sidebarTags: '.sidebar .tag-list',
loadingTagsText: '.tag-list + div', loadingTagsText: '.tag-list + div',
firstFavoriteButton: 'article-list > article-preview:nth-child(1) button', firstFavoriteButton: 'article-list > article-preview:nth-child(1) button',
readMoreLink: 'article-list > article-preview:nth-child(1) .preview-link' readMoreLink: 'article-list > article-preview:nth-child(1) .preview-link'

Loading…
Cancel
Save