From 2728404636a8ebd0edca36e7108496aeac5d9324 Mon Sep 17 00:00:00 2001 From: helenanull Date: Sat, 3 Apr 2021 17:35:43 +0300 Subject: [PATCH] added more tests --- cypress/integration/article.spec.js | 20 ++++++++++++++++++++ cypress/selectors/article.sel.js | 8 +++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index e37b658..741f873 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -11,6 +11,26 @@ describe('Article', () => { }) }) + it('logged out user can see article page', function () { + cy.createArticle().then((link) => { + // log out to visit article as logged out user + cy.clearCookies() + cy.clearLocalStorage() + cy.visit(`/article/${link}`) + }) + cy.get(article.title).should('be.visible') + cy.get(article.banner).should('be.visible') + cy.get(article.author).should('be.visible') + .and('have.text', this.username) + cy.get(article.followButton).should('be.visible') + .and('contain', `Follow ${this.username}`) + cy.get(article.favoriteButton).should('be.visible') + cy.get(article.body).should('be.visible') + cy.get(article.commentTextForLoggedOutUsers).should('be.visible') + .and('contain', 'Sign in or sign up to add comments on this article') + cy.get(article.actions).should('be.visible') + }) + it('can create a new article', () => { cy.visit('/editor/') cy.get(editor.titleField).type('My post title') diff --git a/cypress/selectors/article.sel.js b/cypress/selectors/article.sel.js index 1b16a9c..8c19f04 100644 --- a/cypress/selectors/article.sel.js +++ b/cypress/selectors/article.sel.js @@ -7,5 +7,11 @@ module.exports = { comments: '[ng-repeat*=".comments"] .card-block', commentField: '.card.comment-form textarea', postCommentButton: '.card.comment-form .btn', - commentUsername: '.comment-author.ng-binding' + commentUsername: '.comment-author.ng-binding', + banner: '.banner', + author: '.banner .author', + followButton: '.banner follow-btn', + favoriteButton: '.banner favorite-btn', + actions: '.article-actions', + commentTextForLoggedOutUsers: 'p[show-authed=false]' }