Skip to content

Commit

Permalink
Update API.cy.js
Browse files Browse the repository at this point in the history
  • Loading branch information
M4deN committed Oct 14, 2023
1 parent 7911429 commit 6b478d6
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions cypress/e2e/Projeto_WEB/API.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ describe('Testes da API', () => {

it('Deve adicionar um novo livro', () => {
cy.request('POST', '/livros', {
titulo: 'Novo Livro',
titulo: 'Liverpool FC The Best',
anoPublicacao: 2023,
autor: 'Autor do Novo Livro',
editora: 'Editora do Novo Livro'
autor: 'Steven Gerrard',
editora: 'Anfield Edition'
}).then((response) => {
expect(response.status).to.equal(200)
})
Expand Down Expand Up @@ -75,10 +75,10 @@ describe('Testes da API', () => {
'Content-Type': 'application/json'
},
body: {
titulo: 'Livro AtualizadoSSS',
titulo: 'This Is Anfield',
anoPublicacao: 2022,
autor: 'Autor AtualizadoSS',
editora: 'Editora AtualizadaSS'
autor: 'Ian Rush',
editora: 'Editora Atualizada'
}
}).then(() => {
expect(200).to.equal(200)
Expand All @@ -102,10 +102,10 @@ describe('Testes da API', () => {
'Authorization': `Bearer ${token}`,
},
body: {
titulo: 'Novo Livro',
titulo: 'Liverpool FC The Best',
anoPublicacao: 2023,
autor: 'Autor do Livro',
editora: 'Editora do Livro',
autor: 'Steven Gerrard',
editora: 'Anfield Edition',
},
}).then((postResponse) => {
const livroId = postResponse.body._id
Expand Down Expand Up @@ -142,10 +142,10 @@ describe('Testes da API', () => {

it('Deve adicionar um novo livro', () => {
cy.request('POST', '/livros', {
titulo: 'Novo Livro',
titulo: 'Liverpool FC The Best',
anoPublicacao: 2023,
autor: 'Autor do Novo Livro',
editora: 'Editora do Novo Livro'
autor: 'Steven Gerrard',
editora: 'Anfield Edition'
}).then((response) => {
expect(response.status).to.equal(200)
})
Expand All @@ -170,10 +170,10 @@ describe('Testes da API', () => {
'Content-Type': 'application/json'
},
body: {
titulo: 'Novo Livro',
titulo: 'Liverpool FC The Best',
anoPublicacao: 2023,
autor: 'Autor do Livro',
editora: 'Editora do Livro'
autor: 'Steven Gerrard',
editora: 'Anfield Edition'
}
}).then((postResponse) => {
const livroId = postResponse.body._id
Expand Down Expand Up @@ -206,10 +206,10 @@ describe('Testes da API', () => {
'Authorization': `Bearer ${token}`,
},
body: {
titulo: 'Novo Livro',
titulo: 'Liverpool FC The Best',
anoPublicacao: 2023,
autor: 'Autor do Livro',
editora: 'Editora do Livro',
autor: 'Steven Gerrard',
editora: 'Anfield Edition',
},
}).then((postResponse) => {
const livroId = postResponse.body._id
Expand All @@ -229,9 +229,9 @@ describe('Testes da API', () => {

it('Deve adicionar um novo autor', () => {
cy.request('POST', '/livros', {
nome: 'Novo Autor',
nacionalidade: 'Brasileiro',
anoNascimento: 1980
nome: 'Ian Rush',
nacionalidade: 'Britanico',
anoNascimento: 1973
}).then((response) => {
expect(response.status).to.equal(200)
})
Expand Down

0 comments on commit 6b478d6

Please sign in to comment.