improved config and added tests

master
helenanull 4 years ago
parent 887486620b
commit 807ac83f01

@ -4,6 +4,7 @@
"defaultCommandTimeout": 10000, "defaultCommandTimeout": 10000,
"experimentalFetchPolyfill": true, "experimentalFetchPolyfill": true,
"env": { "env": {
"apiUrl": "https://conduit.productionready.io/api",
"device": "desktop", "device": "desktop",
"email": "test@test.com", "email": "test@test.com",
"password": "Testtest1" "password": "Testtest1"

@ -1,11 +1,13 @@
import editor from '../selectors/editor.sel' import editor from '../selectors/editor.sel'
import article from '../selectors/article.sel' import article from '../selectors/article.sel'
import home from '../selectors/home.sel'
describe('Article', () => { describe('Article', () => {
const articleLink = 'https://github.com/helenanull/cypress-example' const articleLink = 'https://github.com/helenanull/cypress-example'
beforeEach(() => { beforeEach(() => {
cy.register().then((email) => { cy.register().then((email) => {
cy.wrap(email.split('@')[0]).as('username')
cy.login(email) cy.login(email)
}) })
}) })
@ -79,4 +81,27 @@ describe('Article', () => {
}) })
cy.url().should('eq', `${Cypress.config('baseUrl')}/`) cy.url().should('eq', `${Cypress.config('baseUrl')}/`)
}) })
it('can favourite an article', function () {
const apiUrl = Cypress.env('apiUrl')
let slug = ''
cy.intercept('POST', '/api/articles/*/favorite').as('addFavoriteReq')
cy.visit('')
cy.get(home.globalFeedTab).click()
// articles are always changing on home page
// we want to make sure we favourited the correct article
// so we save the first article slug to compare later
cy.get(home.readMoreLink).should('have.attr', 'href').then((link) => {
slug = link.split('/')[2]
})
cy.get(home.firstFavoriteButton).click()
.should('have.css', 'background-color', 'rgb(92, 184, 92)')
cy.wait('@addFavoriteReq')
// verify article was actually favourited
cy.request(`${apiUrl}/articles?favorited=${this.username}&limit=5&offset=0`).then((resp) => {
expect(resp.body.articles[0].slug).to.eq(slug)
})
})
}) })

@ -15,8 +15,10 @@ describe('Home page', () => {
}) })
it('contains correct elements when logged in', () => { it('contains correct elements when logged in', () => {
const apiUrl = Cypress.env('apiUrl')
// mock my feed data // mock my feed data
cy.intercept('https://conduit.productionready.io/api/articles/feed?limit=10*', { cy.intercept(`${apiUrl}/articles/feed?limit=10*`, {
fixture: 'my_feed' fixture: 'my_feed'
}) })
cy.register().then((email) => { cy.register().then((email) => {

@ -25,7 +25,9 @@ describe('Login', () => {
}) })
it('can see error message when API responds with 500', () => { it('can see error message when API responds with 500', () => {
cy.intercept('https://conduit.productionready.io/api/users/login', { const apiUrl = Cypress.env('apiUrl')
cy.intercept(`${apiUrl}/users/login`, {
method: 'POST', method: 'POST',
statusCode: 500, statusCode: 500,
fixture: 'login_error' fixture: 'login_error'

@ -3,5 +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-default',
firstFavoriteButton: 'article-list > article-preview:nth-child(1) button',
readMoreLink: 'article-list > article-preview:nth-child(1) .preview-link'
} }

@ -1,6 +1,8 @@
Cypress.Commands.add('createArticle', () => { Cypress.Commands.add('createArticle', () => {
const apiUrl = Cypress.env('apiUrl')
cy.request({ cy.request({
url: 'https://conduit.productionready.io/api/articles', url: `${apiUrl}/articles`,
method: 'POST', method: 'POST',
headers: { headers: {
authorization: `Token ${window.localStorage.getItem('jwtToken')}` authorization: `Token ${window.localStorage.getItem('jwtToken')}`

@ -1,8 +1,10 @@
Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.env('password')) => { Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.env('password')) => {
const apiUrl = Cypress.env('apiUrl')
cy.request({ cy.request({
// here we can't use just '/api/users/login' because baseUrl is different than API url // here we can't use just '/api/users/login' because baseUrl is different than API url
// if they are the same, then we can just use url: '/api/users/login' like in visit() // if they are the same, then we can just use url: '/api/users/login' like in visit()
url: 'https://conduit.productionready.io/api/users/login', url: `${apiUrl}/users/login`,
method: 'POST', method: 'POST',
body: { body: {
user: { user: {

@ -1,8 +1,10 @@
Cypress.Commands.add('register', () => { Cypress.Commands.add('register', () => {
const apiUrl = Cypress.env('apiUrl')
const username = `cy${Math.random().toString().slice(2, 11)}` const username = `cy${Math.random().toString().slice(2, 11)}`
const email = `${username}@mailinator.com` const email = `${username}@mailinator.com`
cy.request({ cy.request({
url: 'https://conduit.productionready.io/api/users', url: `${apiUrl}/users`,
method: 'POST', method: 'POST',
body: { body: {
user: { user: {

Loading…
Cancel
Save