diff options
| author | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 | 
|---|---|---|
| committer | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 | 
| commit | 3f8a523dbbfcbfed875adc383d91ef6143b651cb (patch) | |
| tree | 5b05c242f7468832d36f888ad8e4fa554887de5b /ufund-api/src/test/java/com/ufund | |
| parent | 13c0042f9c6e130a061cbb448cff6bcd9e8ab5e6 (diff) | |
| parent | d1b7b81cbedc673cf6f52ac5745438f95083b78e (diff) | |
| download | JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.gz JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.bz2 JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.zip  | |
Merge branch 'main' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b-jellysolutions
Diffstat (limited to 'ufund-api/src/test/java/com/ufund')
| -rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java | 18 | ||||
| -rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/service/AuthServiceTest.java | 20 | 
2 files changed, 19 insertions, 19 deletions
diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java index 100bf09..94f93cb 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java @@ -37,10 +37,10 @@ public class CupboardControllerTest {          when(mockCupboardService.createNeed(name, maxGoal, type)).thenReturn(need); -        Map<String, String> needMap = Map.ofEntries( +        Map<String, Object> needMap = Map.ofEntries(                  entry("name", "Test"), -                entry("maxGoal", "100"), -                entry("goalType", "MONETARY") +                entry("maxGoal", 100), +                entry("type", "MONETARY")          );          var res = cupboardController.createNeed(needMap); @@ -53,10 +53,10 @@ public class CupboardControllerTest {      public void createNeedBadMaxGoal() throws IOException, DuplicateKeyException {          when(mockCupboardService.createNeed("Name", -100, Need.GoalType.MONETARY)).thenThrow(new IllegalArgumentException()); -        Map<String, String> needMap = Map.ofEntries( +        Map<String, Object> needMap = Map.ofEntries(                  entry("name", "Name"), -                entry("maxGoal", "-100"), -                entry("goalType", "MONETARY")); +                entry("maxGoal", -100), +                entry("type", "MONETARY"));          var res = cupboardController.createNeed(needMap); @@ -67,10 +67,10 @@ public class CupboardControllerTest {      public void createNeedIOException() throws IOException, DuplicateKeyException {          when(mockCupboardService.createNeed("Name", 100, Need.GoalType.MONETARY)).thenThrow(new IOException()); -        Map<String, String> needMap = Map.ofEntries( +        Map<String, Object> needMap = Map.ofEntries(                  entry("name", "Name"), -                entry("maxGoal", "100"), -                entry("goalType", "MONETARY")); +                entry("maxGoal", 100), +                entry("type", "MONETARY"));          var res = cupboardController.createNeed(needMap); diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/service/AuthServiceTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/service/AuthServiceTest.java index 7770c40..55cf7a9 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/service/AuthServiceTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/service/AuthServiceTest.java @@ -51,16 +51,16 @@ public class AuthServiceTest {      } -    @Test -    public void testAuthenticateMismatchName() throws IOException { -        // Mock -        when(mockAuthDAO.getUserAuth(key)).thenReturn(new UserAuth(key, "EvilFish", null)); -        when(mockUserService.getUser("EvilFish")).thenReturn(user); - -        // Analyze -        assertThrows(IllegalAccessException.class, () -> authService.authenticate(username, key)); - -    } +//    @Test +//    public void testAuthenticateMismatchName() throws IOException { +//        // Mock +//        when(mockAuthDAO.getUserAuth(key)).thenReturn(new UserAuth(key, "EvilFish", null)); +//        when(mockUserService.getUser("EvilFish")).thenReturn(user); +// +//        // Analyze +//        assertThrows(IllegalAccessException.class, () -> authService.authenticate(username, key)); +// +//    }      @Test      public void testAuthenticateMissingUserAuth() throws IOException {  | 
