Update tests and refactor

This commit is contained in:
Santiago Lo Coco 2024-03-10 13:27:06 +01:00
parent 20feb2d305
commit 61bef1210e
8 changed files with 185 additions and 125 deletions

View File

@ -4,13 +4,15 @@ import edu.uastw.library.*;
import edu.uastw.library.decorators.DecreaseBooksCapacityDecorator; import edu.uastw.library.decorators.DecreaseBooksCapacityDecorator;
import edu.uastw.library.decorators.IncreaseBooksCapacityDecorator; import edu.uastw.library.decorators.IncreaseBooksCapacityDecorator;
import edu.uastw.library.decorators.LibraryDecorator; import edu.uastw.library.decorators.LibraryDecorator;
import edu.uastw.library.interfaces.IgnoreCoverage;
import edu.uastw.library.items.Book; import edu.uastw.library.items.Book;
import edu.uastw.library.items.ItemType; import edu.uastw.library.items.ItemType;
import edu.uastw.library.items.LibraryItem; import edu.uastw.library.interfaces.LibraryItem;
import edu.uastw.library.items.Magazine; import edu.uastw.library.items.Magazine;
import java.util.Iterator; import java.util.Iterator;
@IgnoreCoverage
public class App { public class App {
/***************** Resilience variables *****************/ /***************** Resilience variables *****************/

View File

@ -2,8 +2,9 @@ package edu.uastw.library;
import edu.uastw.library.exceptions.LibraryClosedException; import edu.uastw.library.exceptions.LibraryClosedException;
import edu.uastw.library.exceptions.LibraryFullException; import edu.uastw.library.exceptions.LibraryFullException;
import edu.uastw.library.interfaces.ExceptionRunnable;
import edu.uastw.library.items.ItemType; import edu.uastw.library.items.ItemType;
import edu.uastw.library.items.LibraryItem; import edu.uastw.library.interfaces.LibraryItem;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
@ -15,7 +16,7 @@ public class Library implements Iterable<LibraryItem> {
private final List<LibraryItem> libraryItems; private final List<LibraryItem> libraryItems;
private int booksCapacity = 3; private int booksCapacity = 3;
/* Resilience variables */ /**** Resilience variables ****/
private int retryAttempts; private int retryAttempts;
private double libraryOpenCondition; private double libraryOpenCondition;
private int timeMultiplier; private int timeMultiplier;
@ -24,7 +25,7 @@ public class Library implements Iterable<LibraryItem> {
private int timeout; private int timeout;
private int tokens; private int tokens;
private int interval; private int interval;
/*************************/ /******************************/
private Library() { private Library() {
libraryItems = new ArrayList<>(); libraryItems = new ArrayList<>();
@ -49,12 +50,8 @@ public class Library implements Iterable<LibraryItem> {
return false; return false;
} }
public interface MyRunnable {
void run() throws Exception;
}
// Retry method // Retry method
private void performWithRetry(MyRunnable action) throws Exception { private void performWithRetry(ExceptionRunnable action) throws Exception {
int attempt = 0; int attempt = 0;
while (attempt < retryAttempts) { while (attempt < retryAttempts) {
System.out.println("Attempt: " + attempt); System.out.println("Attempt: " + attempt);

View File

@ -0,0 +1,5 @@
package edu.uastw.library.interfaces;
public interface ExceptionRunnable {
void run() throws Exception;
}

View File

@ -0,0 +1,4 @@
package edu.uastw.library.interfaces;
public @interface IgnoreCoverage {
}

View File

@ -1,4 +1,6 @@
package edu.uastw.library.items; package edu.uastw.library.interfaces;
import edu.uastw.library.items.ItemType;
public interface LibraryItem { public interface LibraryItem {
String getTitle(); String getTitle();

View File

@ -1,5 +1,7 @@
package edu.uastw.library.items; package edu.uastw.library.items;
import edu.uastw.library.interfaces.LibraryItem;
public class Book implements LibraryItem { public class Book implements LibraryItem {
private final String title; private final String title;
private final String author; private final String author;

View File

@ -1,5 +1,7 @@
package edu.uastw.library.items; package edu.uastw.library.items;
import edu.uastw.library.interfaces.LibraryItem;
public class Magazine implements LibraryItem { public class Magazine implements LibraryItem {
private final String title; private final String title;
private final String publisher; private final String publisher;

View File

@ -1,10 +1,11 @@
import edu.uastw.library.decorators.DecreaseBooksCapacityDecorator; import edu.uastw.library.decorators.DecreaseBooksCapacityDecorator;
import edu.uastw.library.decorators.IncreaseBooksCapacityDecorator; import edu.uastw.library.decorators.IncreaseBooksCapacityDecorator;
import edu.uastw.library.decorators.LibraryDecorator; import edu.uastw.library.decorators.LibraryDecorator;
import edu.uastw.library.exceptions.LibraryFullException;
import edu.uastw.library.items.Book; import edu.uastw.library.items.Book;
import edu.uastw.library.Library; import edu.uastw.library.Library;
import edu.uastw.library.items.ItemType; import edu.uastw.library.items.ItemType;
import edu.uastw.library.items.LibraryItem; import edu.uastw.library.interfaces.LibraryItem;
import edu.uastw.library.items.Magazine; import edu.uastw.library.items.Magazine;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
@ -19,15 +20,29 @@ import java.util.List;
import static org.junit.Assert.*; import static org.junit.Assert.*;
public class LibraryTest { public class LibraryTest {
private static final int LIBRARY_CAPACITY = 3;
private static final int RETRY_ATTEMPTS = 1;
private static final int LIBRARY_OPEN = -1;
private static final int TIME_MULTIPLIER = 0;
private static final int RATE_LIMIT = 1;
private static final int TIMEOUT = 5;
private static final int INTERVAL = 1;
private final ByteArrayOutputStream outputStreamCaptor = new ByteArrayOutputStream(); private final ByteArrayOutputStream outputStreamCaptor = new ByteArrayOutputStream();
private static int LIBRARY_CAPACITY = 3;
private Library library; private Library library;
@Before @Before
public void setUp() { public void setUp() {
library = Library.getInstance(); library = new Library.Builder()
.setBooksCapacity(LIBRARY_CAPACITY)
.setRetryAttempts(RETRY_ATTEMPTS)
.setLibraryOpenCondition(LIBRARY_OPEN)
.setTimeMultiplier(TIME_MULTIPLIER)
.setRateLimit(RATE_LIMIT)
.setTimeout(TIMEOUT)
.setInterval(INTERVAL)
.build();
System.setOut(new PrintStream(outputStreamCaptor)); System.setOut(new PrintStream(outputStreamCaptor));
library.setBooksCapacity(LIBRARY_CAPACITY);
} }
@After @After
@ -38,142 +53,173 @@ public class LibraryTest {
libraryItems.clear(); libraryItems.clear();
} }
// @Test @Test
// public void testAddItem() { public void testAddItem() throws Exception {
// LibraryItem book = new Book("Test Book", "Test Author"); LibraryItem book = new Book.Builder()
// try { .setTitle("Test Book")
// library.addLibraryItem(book); .setAuthor("Test Author")
// } catch (Exception e) { .build();
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// assertTrue(library.iterator().hasNext()); library.addLibraryItem(book);
// }
// @Test assertTrue(library.iterator().hasNext());
// public void testIterator() { }
// LibraryItem book = new Book("Test Book", "Test Author");
// try { @Test
// library.addLibraryItem(book); public void testIterator() throws Exception {
// } catch (Exception e) { LibraryItem book = new Book.Builder()
// // TODO Auto-generated catch block .setTitle("Test Book")
// e.printStackTrace(); .setAuthor("Test Author")
// } .build();
// assertTrue(library.iterator().hasNext()); library.addLibraryItem(book);
// assertEquals(book, library.iterator().next());
// } assertTrue(library.iterator().hasNext());
assertEquals(book, library.iterator().next());
// @Test }
// public void testBooksCapacity() {
// LibraryItem book1 = new Book("Book 1", "Author 1"); @Test
// LibraryItem book2 = new Book("Book 2", "Author 2"); public void testBooksCapacity() throws Exception {
// LibraryItem book3 = new Book("Book 3", "Author 3"); LibraryItem book1 = new Book.Builder()
.setTitle("Book 1")
// try { .setAuthor("Author 1")
// library.addLibraryItem(book1); .build();
// library.addLibraryItem(book2); LibraryItem book2 = new Book.Builder()
// library.addLibraryItem(book3); .setTitle("Book 2")
// } catch (Exception e) { .setAuthor("Author 2")
// // TODO Auto-generated catch block .build();
// e.printStackTrace(); LibraryItem book3 = new Book.Builder()
// } .setTitle("Book 3")
.setAuthor("Author 3")
// assertEquals(3, library.getBooksCapacity()); .build();
// }
library.addLibraryItem(book1);
// @Test library.addLibraryItem(book2);
// public void testCapacityReached() { library.addLibraryItem(book3);
// LibraryItem book1 = new Book("Book 1", "Author 1");
// LibraryItem book2 = new Book("Book 2", "Author 2"); assertEquals(3, library.getBooksCapacity());
// LibraryItem book3 = new Book("Book 3", "Author 3"); }
// LibraryItem book4 = new Book("Book 4", "Author 4");
@Test(expected = LibraryFullException.class)
// library.addLibraryItem(book1); public void testCapacityReached() throws Exception {
// library.addLibraryItem(book2); LibraryItem book1 = new Book.Builder()
// library.addLibraryItem(book3); .setTitle("Book 1")
.setAuthor("Author 1")
// outputStreamCaptor.reset(); .build();
LibraryItem book2 = new Book.Builder()
// library.addLibraryItem(book4); .setTitle("Book 2")
.setAuthor("Author 2")
// assertEquals("Library capacity reached. Cannot add more items.\n", outputStreamCaptor.toString()); .build();
// } LibraryItem book3 = new Book.Builder()
.setTitle("Book 3")
// @Test .setAuthor("Author 3")
// public void testCustomIterator() { .build();
// LibraryItem book1 = new Book("Book 1", "Author 1"); LibraryItem book4 = new Book.Builder()
// LibraryItem book2 = new Book("Book 2", "Author 2"); .setTitle("Book 4")
// LibraryItem magazine = new Magazine("Magazine 1", "Publisher 1"); .setAuthor("Author 4")
.build();
// library.addLibraryItem(book1);
// library.addLibraryItem(book2); library.addLibraryItem(book1);
// library.addLibraryItem(magazine); library.addLibraryItem(book2);
library.addLibraryItem(book3);
// Iterator<LibraryItem> bookIterator = library.customTypeIterator(ItemType.BOOK); library.addLibraryItem(book4);
// assertTrue(bookIterator.hasNext()); assertEquals("Library capacity reached. Cannot add more items.\n", outputStreamCaptor.toString());
// assertEquals("Book 1", bookIterator.next().getTitle()); }
// assertTrue(bookIterator.hasNext());
// assertEquals("Author 2", bookIterator.next().getOwner()); @Test
// assertFalse(bookIterator.hasNext()); public void testCustomIterator() throws Exception {
// } LibraryItem book1 = new Book.Builder()
.setTitle("Book 1")
// @Test .setAuthor("Author 1")
// public void testIncreaseBooksCapacityDecorator() { .build();
// LibraryDecorator decorator = new IncreaseBooksCapacityDecorator(library, 2); LibraryItem book2 = new Book.Builder()
// decorator.extendedFunctionality(); .setTitle("Book 2")
.setAuthor("Author 2")
// assertEquals(5, library.getBooksCapacity()); .build();
// } LibraryItem magazine = new Magazine.Builder()
.setTitle("Magazine 1")
// @Test .setPublisher("Publisher 1")
// public void testDecreaseBooksCapacityDecorator() { .build();
// LibraryDecorator decorator = new DecreaseBooksCapacityDecorator(library, 2); library.addLibraryItem(book1);
// decorator.extendedFunctionality(); library.addLibraryItem(book2);
library.addLibraryItem(magazine);
// assertEquals(1, library.getBooksCapacity());
// } Iterator<LibraryItem> bookIterator = library.customTypeIterator(ItemType.BOOK);
// @Test assertTrue(bookIterator.hasNext());
// public void testDecreaseBooksCapacityDecoratorMax() { assertEquals("Book 1", bookIterator.next().getTitle());
// library.setBooksCapacity(1); assertTrue(bookIterator.hasNext());
// LibraryDecorator decorator = new DecreaseBooksCapacityDecorator(library, 2); assertEquals("Author 2", bookIterator.next().getOwner());
// decorator.extendedFunctionality(); assertFalse(bookIterator.hasNext());
}
// assertEquals(1, library.getBooksCapacity());
// } @Test
public void testIncreaseBooksCapacityDecorator() {
// @Test LibraryDecorator decorator = new IncreaseBooksCapacityDecorator(library, 2);
// public void testDisplayLibraryItems() { decorator.extendedFunctionality();
// LibraryItem book1 = new Book("Book 1", "Author 1");
// LibraryItem book2 = new Book("Book 2", "Author 2"); assertEquals(5, library.getBooksCapacity());
}
// library.addLibraryItem(book1);
// library.addLibraryItem(book2); @Test
public void testDecreaseBooksCapacityDecorator() {
// outputStreamCaptor.reset(); LibraryDecorator decorator = new DecreaseBooksCapacityDecorator(library, 2);
decorator.extendedFunctionality();
// library.displayLibraryItems();
// String expectedOutput = "Items available in the library:\nBook 1 by Author 1\nBook 2 by Author 2\n"; assertEquals(1, library.getBooksCapacity());
}
// assertEquals(expectedOutput, outputStreamCaptor.toString());
// } @Test
public void testDecreaseBooksCapacityDecoratorMax() {
// @Test library.setBooksCapacity(1);
// public void testBuilder() { LibraryDecorator decorator = new DecreaseBooksCapacityDecorator(library, 2);
// LibraryItem book1 = new Book("Book 1", "Author 1"); decorator.extendedFunctionality();
// LibraryItem book2 = new Book("Book 2", "Author 2");
// LibraryItem book3 = new Book("Book 3", "Author 3"); assertEquals(1, library.getBooksCapacity());
}
// Library library = new LibraryBuilder()
// .setBooksCapacity(3) @Test
// .addLibraryItem(book1) public void testDisplayLibraryItems() throws Exception {
// .addLibraryItem(book2) LibraryItem book1 = new Book.Builder()
// .addLibraryItem(book3) .setTitle("Book 1")
// .build(); .setAuthor("Author 1")
.build();
// assertEquals(3, library.getBooksCapacity()); LibraryItem book2 = new Book.Builder()
// } .setTitle("Book 2")
.setAuthor("Author 2")
.build();
library.addLibraryItem(book1);
library.addLibraryItem(book2);
library.displayLibraryItems();
String expectedOutput = "Items available in the library:\nBook 1 by Author 1\nBook 2 by Author 2\n";
assertTrue(outputStreamCaptor.toString().contains(expectedOutput));
}
@Test
public void testBuilder() {
Library library = new Library.Builder()
.setBooksCapacity(3)
.build();
assertEquals(3, library.getBooksCapacity());
}
@Test()
public void testRemoveLibraryItem() throws Exception {
LibraryItem book1 = new Book.Builder()
.setTitle("Book 1")
.setAuthor("Author 1")
.build();
LibraryItem book2 = new Book.Builder()
.setTitle("Book 2")
.setAuthor("Author 2")
.build();
library.addLibraryItem(book1);
library.addLibraryItem(book2);
library.removeLibraryItem(book1);
}
} }