]> git.mxchange.org Git - pizzaservice-ejb.git/commitdiff
Fixed wrong tests: (please cherry-pick)
authorRoland Häder <roland@mxchange.org>
Thu, 11 Aug 2016 10:11:22 +0000 (12:11 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 16 Aug 2016 17:50:46 +0000 (19:50 +0200)
- locking/unlocking an existing user account always have a valid user id set

src/java/org/mxchange/jusercore/model/user/PizzaAdminUserSessionBean.java

index 79c2fc44a834cea01132aacb4cd526cd517b98a2..0bdea2775bad144acbf1e57b5b0f09e9dfe8dc78 100644 (file)
@@ -169,9 +169,12 @@ public class PizzaAdminUserSessionBean extends BasePizzaDatabaseBean implements
                if (null == user) {
                        // Abort here
                        throw new NullPointerException("user is null"); //NOI18N
-               } else if (user.getUserId() instanceof Long) {
+               } else if (user.getUserId() == null) {
                        // Id is set
-                       throw new IllegalArgumentException("user.userId is not null"); //NOI18N
+                       throw new NullPointerException("user.userId is null"); //NOI18N
+               } else if (user.getUserId() < 1) {
+                       // Id is set
+                       throw new IllegalArgumentException(MessageFormat.format("user.userId={0} is null", user.getUserId())); //NOI18N
                } else if (user.getUserContact() == null) {
                        // Throw NPE again
                        throw new NullPointerException("user.userContact is null"); //NOI18N
@@ -256,9 +259,12 @@ public class PizzaAdminUserSessionBean extends BasePizzaDatabaseBean implements
                if (null == user) {
                        // Abort here
                        throw new NullPointerException("user is null"); //NOI18N
-               } else if (user.getUserId() instanceof Long) {
+               } else if (user.getUserId() == null) {
                        // Id is set
-                       throw new IllegalArgumentException("user.userId is not null"); //NOI18N
+                       throw new NullPointerException("user.userId is null"); //NOI18N
+               } else if (user.getUserId() < 1) {
+                       // Id is set
+                       throw new IllegalArgumentException(MessageFormat.format("user.userId={0} is null", user.getUserId())); //NOI18N
                } else if (user.getUserContact() == null) {
                        // Throw NPE again
                        throw new NullPointerException("user.userContact is null"); //NOI18N