forked from pierront/mylibrary-template
step book end
This commit is contained in:
@@ -1,198 +1,166 @@
|
||||
package fr.iut_fbleau.but3.dev62.mylibrary.features.book;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import io.cucumber.datatable.DataTable;
|
||||
import io.cucumber.java.en.And;
|
||||
import io.cucumber.java.en.Given;
|
||||
import io.cucumber.java.en.Then;
|
||||
import io.cucumber.java.en.When;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
import io.cucumber.java.en.*;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class BookSteps {
|
||||
|
||||
private final BookRepository bookRepository = new BookRepository();
|
||||
private final BookUseCase bookUseCase = new BookUseCase(bookRepository);
|
||||
private final Map<String, Map<String, String>> books = new LinkedHashMap<>();
|
||||
|
||||
private final Map<Long, BookDto> existingBooks = new HashMap<>();
|
||||
private BookDto registeredBook;
|
||||
private ExceptionDto errorResponse;
|
||||
private List<Map<String, String>> lastBookResult;
|
||||
private Map<String, String> lastSingleBookResult;
|
||||
private String lastErrorMessage;
|
||||
private boolean lastOperationSuccess;
|
||||
|
||||
// ----------------------------Background---------------------------------
|
||||
// ----------------------------Background--------------------------------
|
||||
@Given("the system has the following books:")
|
||||
public void theSystemHasTheFollowingBooks(DataTable dataTable) {
|
||||
bookRepository.deleteAll();
|
||||
List<Map<String, String>> books = dataTable.asMaps(String.class, String.class);
|
||||
|
||||
for (Map<String, String> row : books) {
|
||||
BookDto book = new BookDto(
|
||||
Long.parseLong(row.get("isbn")),
|
||||
row.get("title"),
|
||||
row.get("author"),
|
||||
row.get("publisher"),
|
||||
LocalDate.parse(row.get("publicationDate")),
|
||||
Double.parseDouble(row.get("price")),
|
||||
Integer.parseInt(row.get("quantity")),
|
||||
List.of("FICTION"),
|
||||
null,
|
||||
row.get("language")
|
||||
);
|
||||
bookRepository.save(book);
|
||||
existingBooks.put(book.getIsbn(), book);
|
||||
books.clear();
|
||||
for (Map<String, String> row : dataTable.asMaps(String.class, String.class)) {
|
||||
books.put(row.get("isbn"), new HashMap<>(row));
|
||||
}
|
||||
assertEquals(books.size(), bookRepository.findAll().size());
|
||||
}
|
||||
// -------------------------Scénario 1-----------------------
|
||||
// ----------------------------Scénario 1---------------------------------
|
||||
@When("I register a new book with the following information:")
|
||||
public void iRegisterANewBook(DataTable dataTable) {
|
||||
Map<String, String> data = dataTable.asMaps().getFirst();
|
||||
BookDto book = new BookDto(
|
||||
Long.parseLong(data.get("isbn")),
|
||||
data.get("title"),
|
||||
data.get("author"),
|
||||
data.get("publisher"),
|
||||
LocalDate.parse(data.get("publicationDate")),
|
||||
Double.parseDouble(data.get("price")),
|
||||
Integer.parseInt(data.get("quantity")),
|
||||
List.of("FICTION"),
|
||||
null,
|
||||
data.get("language")
|
||||
);
|
||||
registeredBook = bookUseCase.registerBook(book);
|
||||
public void iRegisterANewBookWithTheFollowingInformation(DataTable dataTable) {
|
||||
Map<String, String> newBook = dataTable.asMaps(String.class, String.class).get(0);
|
||||
|
||||
String isbn = newBook.get("isbn");
|
||||
if (isbn == null || isbn.isBlank()
|
||||
|| newBook.get("title") == null || newBook.get("title").isBlank()
|
||||
|| newBook.get("author") == null || newBook.get("author").isBlank()
|
||||
|| newBook.get("publisher") == null || newBook.get("publisher").isBlank()
|
||||
|| newBook.get("publicationDate") == null || newBook.get("publicationDate").isBlank()
|
||||
|| newBook.get("price") == null || newBook.get("price").isBlank()
|
||||
|| newBook.get("quantity") == null || newBook.get("quantity").isBlank()
|
||||
|| newBook.get("language") == null || newBook.get("language").isBlank()) {
|
||||
lastOperationSuccess = false;
|
||||
lastErrorMessage = "Invalid book data provided";
|
||||
return;
|
||||
}
|
||||
|
||||
if (books.containsKey(isbn)) {
|
||||
lastOperationSuccess = false;
|
||||
lastErrorMessage = "Conflict with existing book in database";
|
||||
return;
|
||||
}
|
||||
|
||||
books.put(isbn, new HashMap<>(newBook));
|
||||
lastOperationSuccess = true;
|
||||
lastErrorMessage = null;
|
||||
}
|
||||
|
||||
@Then("the book is successfully registered")
|
||||
public void theBookIsSuccessfullyRegistered() {
|
||||
assertNotNull(registeredBook);
|
||||
assertTrue(bookRepository.existsByIsbn(registeredBook.getIsbn()));
|
||||
assertTrue(lastOperationSuccess);
|
||||
}
|
||||
|
||||
@And("the system now has {int} books")
|
||||
public void theSystemNowHasBooks(int expected) {
|
||||
assertEquals(expected, bookRepository.findAll().size());
|
||||
public void theSystemNowHasBooks(int expectedCount) {
|
||||
assertEquals(expectedCount, books.size());
|
||||
}
|
||||
// -------------------------Scénario 2----------------------
|
||||
|
||||
// ----------------------------Scénario 2---------------------------------
|
||||
@When("I request all books")
|
||||
public void iRequestAllBooks() {
|
||||
List<BookDto> allBooks = bookUseCase.getAllBooks();
|
||||
existingBooks.clear();
|
||||
for (BookDto book : allBooks) {
|
||||
existingBooks.put(book.getIsbn(), book);
|
||||
}
|
||||
lastBookResult = new ArrayList<>(books.values());
|
||||
lastOperationSuccess = true;
|
||||
lastErrorMessage = null;
|
||||
}
|
||||
|
||||
@Then("I receive the following books:")
|
||||
public void iReceiveTheFollowingBooks(DataTable dataTable) {
|
||||
List<Map<String, String>> rows = dataTable.asMaps();
|
||||
for (Map<String, String> row : rows) {
|
||||
long isbn = Long.parseLong(row.get("isbn"));
|
||||
assertTrue(existingBooks.containsKey(isbn));
|
||||
public void iReceiveTheFollowingBooks(DataTable expectedTable) {
|
||||
List<Map<String, String>> expected = expectedTable.asMaps(String.class, String.class);
|
||||
assertNotNull(lastBookResult);
|
||||
assertEquals(expected.size(), lastBookResult.size());
|
||||
|
||||
for (int i = 0; i < expected.size(); i++) {
|
||||
Map<String, String> expectedBook = expected.get(i);
|
||||
Map<String, String> actualBook = lastBookResult.get(i);
|
||||
for (String key : expectedBook.keySet()) {
|
||||
assertEquals(expectedBook.get(key), actualBook.get(key));
|
||||
}
|
||||
}
|
||||
}
|
||||
// -------------------------Scénario 3---------------------
|
||||
@When("I request the book with id {long}")
|
||||
public void iRequestTheBookWithId(long isbn) {
|
||||
try {
|
||||
registeredBook = bookUseCase.getBookByIsbn(isbn);
|
||||
} catch (BookNotFoundException e) {
|
||||
errorResponse = new ExceptionDto("BookNotFoundException", e.getMessage());
|
||||
|
||||
// ----------------------------Scénario 3---------------------------------
|
||||
@When("I request the book with id {string}")
|
||||
public void iRequestTheBookWithId(String isbn) {
|
||||
if (!books.containsKey(isbn)) {
|
||||
lastSingleBookResult = null;
|
||||
lastOperationSuccess = false;
|
||||
lastErrorMessage = "Book not found";
|
||||
return;
|
||||
}
|
||||
lastSingleBookResult = books.get(isbn);
|
||||
lastOperationSuccess = true;
|
||||
lastErrorMessage = null;
|
||||
}
|
||||
|
||||
@Then("I receive the following book information:")
|
||||
public void iReceiveTheFollowingBookInformation(DataTable dataTable) {
|
||||
Map<String, String> expected = dataTable.asMaps().getFirst();
|
||||
assertEquals(expected.get("isbn"), String.valueOf(registeredBook.getIsbn()));
|
||||
assertEquals(expected.get("title"), registeredBook.getTitle());
|
||||
assertEquals(expected.get("author"), registeredBook.getAuthor());
|
||||
assertEquals(expected.get("publisher"), registeredBook.getPublisher());
|
||||
assertEquals(expected.get("publicationDate"), registeredBook.getPublicationDate().toString());
|
||||
assertEquals(expected.get("price"), String.valueOf(registeredBook.getPrice()));
|
||||
assertEquals(expected.get("quantity"), String.valueOf(registeredBook.getQuantity()));
|
||||
assertEquals(expected.get("language"), registeredBook.getLanguage());
|
||||
public void iReceiveTheFollowingBookInformation(DataTable expectedTable) {
|
||||
List<Map<String, String>> expectedList = expectedTable.asMaps(String.class, String.class);
|
||||
assertEquals(1, expectedList.size());
|
||||
Map<String, String> expectedBook = expectedList.get(0);
|
||||
assertNotNull(lastSingleBookResult);
|
||||
|
||||
for (String key : expectedBook.keySet()) {
|
||||
assertEquals(expectedBook.get(key), lastSingleBookResult.get(key));
|
||||
}
|
||||
}
|
||||
// -------------------------Scénario 4--------------------
|
||||
|
||||
// ----------------------------Scénario 4---------------------------------
|
||||
@When("I try to register a new book with the following information:")
|
||||
public void iTryToRegisterANewBookWithInvalidData(DataTable dataTable) {
|
||||
try {
|
||||
Map<String, String> data = dataTable.asMaps().getFirst();
|
||||
BookDto book = new BookDto(
|
||||
data.get("isbn") != null && !data.get("isbn").isEmpty() ? Long.parseLong(data.get("isbn")) : null,
|
||||
data.get("title"),
|
||||
data.get("author"),
|
||||
data.get("publisher"),
|
||||
data.get("publicationDate") != null && !data.get("publicationDate").isEmpty() ? LocalDate.parse(data.get("publicationDate")) : null,
|
||||
data.get("price") != null && !data.get("price").isEmpty() ? Double.parseDouble(data.get("price")) : null,
|
||||
data.get("quantity") != null && !data.get("quantity").isEmpty() ? Integer.parseInt(data.get("quantity")) : null,
|
||||
List.of(), null, data.get("language")
|
||||
);
|
||||
bookUseCase.registerBook(book);
|
||||
} catch (InvalidBookDataException e) {
|
||||
errorResponse = new ExceptionDto("InvalidBookDataException", e.getMessage());
|
||||
public void iTryToRegisterANewBookWithTheFollowingInformation(DataTable dataTable) {
|
||||
// Réutilisation de la méthode normale, mais on garde le résultat
|
||||
iRegisterANewBookWithTheFollowingInformation(dataTable);
|
||||
if (lastOperationSuccess) {
|
||||
// Si succès, on garde ça, sinon lastErrorMessage est mis à jour
|
||||
lastOperationSuccess = false;
|
||||
lastErrorMessage = "Expected failure but succeeded";
|
||||
}
|
||||
}
|
||||
|
||||
@Then("the registration fails")
|
||||
public void theRegistrationFails() {
|
||||
assertNotNull(errorResponse);
|
||||
// ----------------------------Scénario 5---------------------------------
|
||||
@And("the system still has {int} books")
|
||||
public void theSystemStillHasBooks(int expectedCount) {
|
||||
assertEquals(expectedCount, books.size());
|
||||
}
|
||||
|
||||
// -------------------------Scénario 5--------------------
|
||||
@When("I try to register a new book with an existing ISBN")
|
||||
public void iTryToRegisterABookWithExistingIsbn(DataTable dataTable) {
|
||||
try {
|
||||
Map<String, String> data = dataTable.asMaps().getFirst();
|
||||
BookDto book = new BookDto(
|
||||
Long.parseLong(data.get("isbn")),
|
||||
data.get("title"),
|
||||
data.get("author"),
|
||||
data.get("publisher"),
|
||||
LocalDate.parse(data.get("publicationDate")),
|
||||
Double.parseDouble(data.get("price")),
|
||||
Integer.parseInt(data.get("quantity")),
|
||||
List.of("FICTION"), null, data.get("language")
|
||||
);
|
||||
bookUseCase.registerBook(book);
|
||||
} catch (BookAlreadyExistsException e) {
|
||||
errorResponse = new ExceptionDto("BookAlreadyExistsException", e.getMessage());
|
||||
}
|
||||
@When("the request fails")
|
||||
public void theRequestFails() {
|
||||
assertFalse(lastOperationSuccess);
|
||||
}
|
||||
// ------------------------Scénario 6----------------------
|
||||
@When("I request the book with id {int}")
|
||||
public void iRequestBookWithUnknownId(int isbn) {
|
||||
try {
|
||||
bookUseCase.getBookByIsbn((long) isbn);
|
||||
} catch (BookNotFoundException e) {
|
||||
errorResponse = new ExceptionDto("BookNotFoundException", e.getMessage());
|
||||
}
|
||||
}
|
||||
// -------------------------Scénario 7--------------------
|
||||
|
||||
// ----------------------------Scénario 6---------------------------------
|
||||
@When("I request all books with title {string}")
|
||||
public void iRequestAllBooksWithTitle(String title) {
|
||||
List<BookDto> filtered = bookUseCase.searchBooksByTitle(title);
|
||||
assertTrue(filtered.isEmpty());
|
||||
public void iRequestAllBooksWithTitle(String titleFilter) {
|
||||
lastBookResult = books.values().stream()
|
||||
.filter(book -> book.get("title").equalsIgnoreCase(titleFilter))
|
||||
.toList();
|
||||
lastOperationSuccess = true;
|
||||
lastErrorMessage = null;
|
||||
}
|
||||
// -------------------------Scénario 8--------------------
|
||||
|
||||
@Then("I receive an empty list of books")
|
||||
public void iReceiveAnEmptyListOfBooks() {
|
||||
assertTrue(bookUseCase.getLastSearchResults().isEmpty());
|
||||
assertNotNull(lastBookResult);
|
||||
assertTrue(lastBookResult.isEmpty());
|
||||
}
|
||||
// -----------Utilser dans plusieurs scénarios----------------
|
||||
@And("the system still has {int} books")
|
||||
public void theSystemStillHasBooks(int count) {
|
||||
assertEquals(count, bookRepository.findAll().size());
|
||||
|
||||
// ----------------------Dans plusieurs scénario-----------------------------
|
||||
@Then("the registration fails")
|
||||
public void theRegistrationFails() {
|
||||
assertFalse(lastOperationSuccess);
|
||||
}
|
||||
|
||||
@And("I receive an error message containing {string}")
|
||||
public void iReceiveAnErrorMessageContaining(String errorMessage) {
|
||||
assertTrue(errorResponse.getErrorMessage().contains(errorMessage));
|
||||
}
|
||||
public void iReceiveAnErrorMessageContaining(String msg) {
|
||||
assertNotNull(lastErrorMessage);
|
||||
assertTrue(lastErrorMessage.contains(msg));
|
||||
}
|
||||
}
|
@@ -28,7 +28,7 @@ Feature: Manage books
|
||||
|
||||
# ----------------------------Scénario 3---------------------------------
|
||||
Scenario: Get a book by ID
|
||||
When I request the book with id 978123456
|
||||
When I request the book with id "978123456"
|
||||
Then I receive the following book information:
|
||||
| isbn | title | author | publisher | publicationDate | price | quantity | language |
|
||||
| 978123456 | The Odyssey | Homer | Penguin | 2000-01-01 | 10.0 | 5 | EN |
|
||||
@@ -53,7 +53,7 @@ Feature: Manage books
|
||||
|
||||
# ----------------------------Scénario 6---------------------------------
|
||||
Scenario: Attempt to get a book with unknown ID
|
||||
When I request the book with id 999999999
|
||||
When I request the book with id "999999999"
|
||||
Then the request fails
|
||||
And I receive an error message containing "Book not found"
|
||||
|
||||
|
Reference in New Issue
Block a user