]> git.mxchange.org Git - jjobs-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 19:24:51 +0000 (21:24 +0200)
- locking/unlocking an existing user account always have a valid user id set

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

index 8595819a3e581dc63aec94f1df9b6b271b005cd2..804b05409a61402c55d67540bab9b241b894971b 100644 (file)
@@ -169,9 +169,12 @@ public class JobsAdminUserSessionBean extends BaseJobsDatabaseBean implements Ad
                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 JobsAdminUserSessionBean extends BaseJobsDatabaseBean implements Ad
                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