diff --git a/cypress.json b/cypress.json index 7f0efbf..5221569 100644 --- a/cypress.json +++ b/cypress.json @@ -4,6 +4,7 @@ "defaultCommandTimeout": 10000, "experimentalFetchPolyfill": true, "env": { + "apiUrl": "https://conduit.productionready.io/api", "device": "desktop", "email": "test@test.com", "password": "Testtest1" diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index c527171..2cd322e 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -1,11 +1,13 @@ import editor from '../selectors/editor.sel' import article from '../selectors/article.sel' +import home from '../selectors/home.sel' describe('Article', () => { const articleLink = 'https://github.com/helenanull/cypress-example' beforeEach(() => { cy.register().then((email) => { + cy.wrap(email.split('@')[0]).as('username') cy.login(email) }) }) @@ -79,4 +81,27 @@ describe('Article', () => { }) 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) + }) + }) }) diff --git a/cypress/integration/home.spec.js b/cypress/integration/home.spec.js index 6710bb8..cbd6ddc 100644 --- a/cypress/integration/home.spec.js +++ b/cypress/integration/home.spec.js @@ -15,8 +15,10 @@ describe('Home page', () => { }) it('contains correct elements when logged in', () => { + const apiUrl = Cypress.env('apiUrl') + // 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' }) cy.register().then((email) => { diff --git a/cypress/integration/login.spec.js b/cypress/integration/login.spec.js index 2f2658c..801a61d 100644 --- a/cypress/integration/login.spec.js +++ b/cypress/integration/login.spec.js @@ -25,7 +25,9 @@ describe('Login', () => { }) 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', statusCode: 500, fixture: 'login_error' diff --git a/cypress/selectors/home.sel.js b/cypress/selectors/home.sel.js index 1e889ec..c8bb76d 100644 --- a/cypress/selectors/home.sel.js +++ b/cypress/selectors/home.sel.js @@ -3,5 +3,7 @@ module.exports = { globalFeedTab: '[ng-class*=all]', articles: 'article-list [ng-repeat*="ctrl.list"] .article-preview', 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' } diff --git a/cypress/support/article.cmd.js b/cypress/support/article.cmd.js index 8fa6437..ccae0be 100644 --- a/cypress/support/article.cmd.js +++ b/cypress/support/article.cmd.js @@ -1,6 +1,8 @@ Cypress.Commands.add('createArticle', () => { + const apiUrl = Cypress.env('apiUrl') + cy.request({ - url: 'https://conduit.productionready.io/api/articles', + url: `${apiUrl}/articles`, method: 'POST', headers: { authorization: `Token ${window.localStorage.getItem('jwtToken')}` diff --git a/cypress/support/login.cmd.js b/cypress/support/login.cmd.js index de388bd..6c8519e 100644 --- a/cypress/support/login.cmd.js +++ b/cypress/support/login.cmd.js @@ -1,8 +1,10 @@ Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.env('password')) => { + const apiUrl = Cypress.env('apiUrl') + cy.request({ // 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() - url: 'https://conduit.productionready.io/api/users/login', + url: `${apiUrl}/users/login`, method: 'POST', body: { user: { diff --git a/cypress/support/register.cmd.js b/cypress/support/register.cmd.js index 9cea48a..f185447 100644 --- a/cypress/support/register.cmd.js +++ b/cypress/support/register.cmd.js @@ -1,8 +1,10 @@ Cypress.Commands.add('register', () => { + const apiUrl = Cypress.env('apiUrl') const username = `cy${Math.random().toString().slice(2, 11)}` const email = `${username}@mailinator.com` + cy.request({ - url: 'https://conduit.productionready.io/api/users', + url: `${apiUrl}/users`, method: 'POST', body: { user: {