This is an automated email from the ASF dual-hosted git repository.

mabin pushed a commit to branch houserush-sample
in repository https://gitbox.apache.org/repos/asf/servicecomb-samples.git

commit 7b53e534fe192c177f2ad9605722f5e1a871e89f
Author: linzb0123 <[email protected]>
AuthorDate: Fri Aug 2 16:06:33 2019 +0800

    add unit tests to login
---
 houserush/login/pom.xml                            |   4 +
 .../houserush/login/service/UserServiceTest.java   | 148 +++++++++++++++++++++
 2 files changed, 152 insertions(+)

diff --git a/houserush/login/pom.xml b/houserush/login/pom.xml
index 5d32776..37eead4 100644
--- a/houserush/login/pom.xml
+++ b/houserush/login/pom.xml
@@ -66,6 +66,10 @@
       <artifactId>java-jwt</artifactId>
       <version>3.8.1</version>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-test</artifactId>
+    </dependency>
   </dependencies>
 
   <build>
diff --git 
a/houserush/login/src/test/java/org/apache/servicecomb/samples/practise/houserush/login/service/UserServiceTest.java
 
b/houserush/login/src/test/java/org/apache/servicecomb/samples/practise/houserush/login/service/UserServiceTest.java
new file mode 100644
index 0000000..71df9d2
--- /dev/null
+++ 
b/houserush/login/src/test/java/org/apache/servicecomb/samples/practise/houserush/login/service/UserServiceTest.java
@@ -0,0 +1,148 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.servicecomb.samples.practise.houserush.login.service;
+
+import org.apache.servicecomb.samples.practise.houserush.login.aggregate.User;
+import org.apache.servicecomb.samples.practise.houserush.login.dao.UserDao;
+import org.apache.servicecomb.swagger.invocation.exception.InvocationException;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.runners.MockitoJUnitRunner;
+import org.springframework.boot.test.context.SpringBootTest;
+
+import static org.hamcrest.core.Is.is;
+import static org.junit.Assert.*;
+import static org.mockito.Matchers.any;
+import static org.mockito.Mockito.when;
+
+@RunWith(MockitoJUnitRunner.class)
+@SpringBootTest
+public class UserServiceTest {
+
+  @InjectMocks
+  private UserService userService = new UserServiceImpl();
+
+  @Mock
+  private UserDao userDao;
+
+  @Test
+  public void testCreate() {
+    //create a user
+    User user = new User();
+    user.setUsername("root");
+    user.setPassword("123456");
+    when(userDao.save(any(User.class))).then(invocation -> {
+      User user0 = (User) invocation.getArguments()[0];
+      user0.setId(10);
+      return user0;
+    });
+    when(userDao.findByUsername("root")).thenReturn(null).thenReturn(user);
+
+    //first create
+    User newUser = new User();
+    newUser.setUsername("root");
+    newUser.setPassword("123456");
+    user = userService.createUser(newUser);
+    assertNotNull(user);
+
+    //repeat create
+    User newUser2 = new User();
+    newUser2.setUsername("root");
+    newUser2.setPassword("123456");
+    try {
+      userService.createUser(newUser2);
+      assert false;
+    } catch (InvocationException e) {
+      assert true;
+    }
+
+  }
+
+  @Test
+  public void testUpdatePassword() {
+    User user = new User();
+    user.setUsername("root");
+    user.setHashedPassword(user.makeHashedPassword("123456"));
+    user.setId(10);
+    when(userDao.findOne(10)).thenReturn(null).thenReturn(user);
+
+    //user not existed
+    try {
+      userService.updatePassword(10, "123456", "123456789");
+      assert true;
+    } catch (Exception e) {
+      assert true;
+    }
+    //password is incorrect
+    try {
+      userService.updatePassword(10, "12345", "123456789");
+      assert true;
+    } catch (Exception e) {
+      assert true;
+    }
+    boolean success = userService.updatePassword(10, "123456", "123456789");
+    assertTrue(success);
+
+  }
+
+  @Test
+  public void testSigninAndVerifyToken() {
+    //create a user
+    User user = new User();
+    user.setUsername("root");
+    user.setId(10);
+    user.setHashedPassword(user.makeHashedPassword("root"));
+    when(userDao.findByUsername("root")).thenReturn(user);
+    when(userDao.findOne(10)).thenReturn(user);
+
+    //login success
+    User user1 = new User();
+    user1.setUsername("root");
+    user1.setPassword("root");
+    user = userService.signin(user1);
+    assertNotNull(user);
+    assertNotNull(user.getToken());
+    //verify success
+    String token = user.getToken();
+    user = userService.verifyToken(token);
+    assertThat(user.getId(), is(10));
+    //verify fail
+    try {
+      user = userService.verifyToken("incorrect token");
+      assert false;
+    } catch (Exception e) {
+      assert true;
+    }
+    //login fail password incorrect
+    User user2 = new User();
+    user2.setUsername("root");
+    user2.setPassword("root2");
+    user = userService.signin(user2);
+    assertNull(user);
+
+    //login fail username not existed
+    User user3 = new User();
+    user3.setUsername("root3");
+    user3.setPassword("root");
+    user = userService.signin(user2);
+    assertNull(user);
+  }
+
+}
\ No newline at end of file

Reply via email to