Search in sources :

Example 11 with Account_

use of indi.mybatis.flying.pojo.Account_ in project mybatis.flying by limeng32.

the class CacheTest method testClearCache2.

/* 测试分页缓存能正确清除父对象的用例 */
@Test
@IfProfileValue(name = "CACHE", value = "true")
@ExpectedDatabase(assertionMode = DatabaseAssertionMode.NON_STRICT, value = "/indi/mybatis/flying/test/cacheTest/testClearCache2.result.xml")
@DatabaseTearDown(type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/cacheTest/testClearCache2.result.xml")
public void testClearCache2() {
    Role_ r = new Role_(), r2 = new Role_();
    r.setId(1);
    r.setName("root");
    roleService.insert(r);
    r2.setId(2);
    r2.setName("deployer");
    roleService.insert(r2);
    Account_ a = new Account_(), a2 = new Account_(), a3 = new Account_(), a4 = new Account_(), a5 = new Account_(), a6 = new Account_(), a7 = new Account_(), a8 = new Account_(), a9 = new Account_(), a10 = new Account_(), a11 = new Account_(), a12 = new Account_();
    a.setName("ann");
    a.setEmail("");
    a.setRole(r);
    accountService.insert(a);
    a2.setName("bob");
    a2.setEmail("");
    a2.setRole(r);
    accountService.insert(a2);
    a3.setName("caq");
    a3.setEmail("");
    a3.setRole(r);
    accountService.insert(a3);
    a4.setName("don");
    a4.setEmail("");
    a4.setRole(r);
    accountService.insert(a4);
    a5.setName("eli");
    a5.setEmail("");
    a5.setRole(r);
    accountService.insert(a5);
    a6.setName("fea");
    a6.setEmail("");
    a6.setRole(r);
    accountService.insert(a6);
    a7.setName("gus");
    a7.setEmail("");
    a7.setRole(r);
    accountService.insert(a7);
    a8.setName("hex");
    a8.setEmail("");
    a8.setRole(r);
    accountService.insert(a8);
    a9.setName("ivy");
    a9.setEmail("");
    a9.setRole(r);
    accountService.insert(a9);
    a10.setName("jak");
    a10.setEmail("");
    a10.setRole(r);
    accountService.insert(a10);
    a11.setName("kir");
    a11.setEmail("");
    a11.setRole(r);
    accountService.insert(a11);
    a12.setName("lee");
    a12.setEmail("");
    a12.setRole(r);
    accountService.insert(a12);
    Role_ role = roleService.select(1);
    Account_Condition ac = new Account_Condition();
    ac.setLimiter(new PageParam(2, 10));
    ac.setEmail("");
    Role_ rc = new Role_();
    rc.setId(1);
    ac.setRole(rc);
    Collection<Account_> c = accountService.selectAll(ac);
    Page<Account_> p = new Page<>(c, ac.getLimiter());
    Assert.assertEquals(2, p.getPageItems().size());
    for (Account_ temp : p.getPageItems()) {
        Assert.assertEquals("root", temp.getRole().getName());
    }
    Account_Condition ac1 = new Account_Condition();
    ac1.setLimiter(new PageParam(2, 10));
    ac1.setEmail("");
    Role_ rc1 = new Role_();
    rc1.setId(1);
    ac1.setRole(rc1);
    Collection<Account_> c1 = accountService.selectAll(ac1);
    role.setName("rootNew");
    roleService.update(role);
    Account_Condition ac2 = new Account_Condition();
    ac2.setLimiter(new PageParam(2, 10));
    ac2.setEmail("");
    Role_ rc2 = new Role_();
    rc2.setId(1);
    ac2.setRole(rc2);
    Collection<Account_> c2 = accountService.selectAll(ac2);
    Page<Account_> p2 = new Page<>(c2, ac2.getLimiter());
    Assert.assertEquals(2, p2.getPageItems().size());
    for (Account_ temp : p2.getPageItems()) {
        Assert.assertEquals("rootNew", temp.getRole().getName());
    }
}
Also used : Account_(indi.mybatis.flying.pojo.Account_) Account_Condition(indi.mybatis.flying.pojo.condition.Account_Condition) Page(indi.mybatis.flying.pagination.Page) PageParam(indi.mybatis.flying.pagination.PageParam) Role_(indi.mybatis.flying.pojo.Role_) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) Test(org.junit.Test) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown) IfProfileValue(org.springframework.test.annotation.IfProfileValue)

Example 12 with Account_

use of indi.mybatis.flying.pojo.Account_ in project mybatis.flying by limeng32.

the class CacheTest method testUpdateDirect3.

/* 测试在查询对象查询的情况下,缓存确实生效的用例 */
// @Test
@IfProfileValue(name = "CACHE", value = "true")
@ExpectedDatabase(connection = "dataSource1", assertionMode = DatabaseAssertionMode.NON_STRICT, value = "/indi/mybatis/flying/test/cacheTest/testUpdateDirect.result.xml")
@DatabaseTearDown(connection = "dataSource1", type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/cacheTest/testUpdateDirect.result.xml")
public void testUpdateDirect3() {
    Role_ r = new Role_();
    r.setId(1);
    r.setName("ann");
    roleService.insert(r);
    Account_ a = new Account_();
    a.setId(1L);
    a.setRole(r);
    a.setEmail("email");
    accountService.insert(a);
    Account_Condition ac = new Account_Condition();
    ac.setEmailLike("mai");
    Collection<Account_> c = accountService.selectAll(ac);
    Map<String, Object> m = new HashMap<>(4);
    m.put("id", 1);
    m.put("name", "bob");
    roleService.updateDirect(m);
    Account_Condition ac2 = new Account_Condition();
    ac2.setEmailLike("mai");
    Collection<Account_> c2 = accountService.selectAll(ac2);
    for (Account_ t : c2) {
        Assert.assertEquals("ann", t.getRole().getName());
    }
}
Also used : HashMap(java.util.HashMap) Account_(indi.mybatis.flying.pojo.Account_) Account_Condition(indi.mybatis.flying.pojo.condition.Account_Condition) Role_(indi.mybatis.flying.pojo.Role_) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown) IfProfileValue(org.springframework.test.annotation.IfProfileValue)

Example 13 with Account_

use of indi.mybatis.flying.pojo.Account_ in project mybatis.flying by limeng32.

the class CacheTest method testInsertSnowFlakeCache.

/* 一个在缓存状态下使用自定义主键生成器insert的测试用例 */
/* 使用普通方式增加一个Account,查询数量为1,再使用自定义主键方式增加一个Account,查询数量为2 */
@Test
@IfProfileValue(name = "CACHE", value = "true")
@ExpectedDatabase(connection = "dataSource1", assertionMode = DatabaseAssertionMode.NON_STRICT_UNORDERED, value = "/indi/mybatis/flying/test/cacheTest/testInsertSnowFlakeCache.result.xml")
@DatabaseTearDown(connection = "dataSource1", type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/cacheTest/testInsertSnowFlakeCache.result.xml")
public void testInsertSnowFlakeCache() {
    Account_ account = new Account_();
    account.setName("ann");
    accountService.insert(account);
    int i = accountService.count(new Account_());
    Assert.assertEquals(1, i);
    Account_ account2 = new Account_();
    account2.setName("bob");
    accountService.insertSnowFlake(account2);
    int i2 = accountService.count(new Account_());
    Assert.assertEquals(2, i2);
}
Also used : Account_(indi.mybatis.flying.pojo.Account_) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) Test(org.junit.Test) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown) IfProfileValue(org.springframework.test.annotation.IfProfileValue)

Example 14 with Account_

use of indi.mybatis.flying.pojo.Account_ in project mybatis.flying by limeng32.

the class ConditionInTest method testConditionIn.

/**
 * 测试无外键情况下condition:in功能
 */
@Test
@DatabaseSetup(type = DatabaseOperation.CLEAN_INSERT, value = "/indi/mybatis/flying/test/conditionInTest/testConditionIn.xml")
@DatabaseTearDown(type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/conditionInTest/testConditionIn.xml")
public void testConditionIn() {
    Account_Condition ac = new Account_Condition();
    List<String> nameC = new ArrayList<>();
    nameC.add("ann");
    ac.setNameIn(nameC);
    Collection<Account_> c = accountService.selectAll(ac);
    Assert.assertEquals(1, c.size());
    nameC.add("bob");
    Collection<Account_> c2 = accountService.selectAll(ac);
    Assert.assertEquals(2, c2.size());
    List<String> nameC2 = new ArrayList<>();
    ac.setNameIn(nameC2);
    Collection<Account_> c3 = accountService.selectAll(ac);
    Assert.assertEquals(2, c3.size());
}
Also used : ArrayList(java.util.ArrayList) Account_Condition(indi.mybatis.flying.pojo.condition.Account_Condition) Account_(indi.mybatis.flying.pojo.Account_) Test(org.junit.Test) DatabaseSetup(com.github.springtestdbunit.annotation.DatabaseSetup) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown)

Example 15 with Account_

use of indi.mybatis.flying.pojo.Account_ in project mybatis.flying by limeng32.

the class ConditionTest method testMultiLikeAND.

@Test
@DatabaseSetup(type = DatabaseOperation.CLEAN_INSERT, value = "/indi/mybatis/flying/test/conditionTest/testMultiLikeAND.xml")
@DatabaseTearDown(type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/conditionTest/testMultiLikeAND.xml")
public void testMultiLikeAND() {
    Account_Condition ac = new Account_Condition();
    ac.setName("ann");
    ac.setEmailLike("as");
    List<String> multi = new ArrayList<>();
    multi.add("a");
    multi.add("s");
    multi.add("d");
    ac.setMultiLike(multi);
    Collection<Account_> c = accountService.selectAll(ac);
    Assert.assertEquals(1, c.size());
    int conut = accountService.count(ac);
    Assert.assertEquals(1, conut);
    Account_Condition ac2 = new Account_Condition();
    ac2.setName("ann");
    ac2.setEmailLike("as");
    List<String> multi2 = new LinkedList<>();
    ac2.setMultiLike(multi2);
    Collection<Account_> c2 = accountService.selectAll(ac2);
    Assert.assertEquals(1, c2.size());
    Account_Condition ac3 = new Account_Condition();
    List<String> multi3 = new ArrayList<>();
    multi3.add(null);
    multi3.add("a");
    multi3.add(null);
    ac3.setMultiLike(multi3);
    Collection<Account_> c3 = accountService.selectAll(ac3);
    Assert.assertEquals(1, c3.size());
    LoginLog_ lc = new LoginLog_();
    Account_Condition ac4 = new Account_Condition();
    List<String> multi4 = new ArrayList<>();
    multi4.add("a");
    ac4.setMultiLike(multi4);
    lc.setAccount(ac4);
    Collection<LoginLog_> c4 = loginLogService.selectAll(lc);
    Assert.assertEquals(1, c4.size());
}
Also used : LoginLog_(indi.mybatis.flying.pojo.LoginLog_) ArrayList(java.util.ArrayList) Account_Condition(indi.mybatis.flying.pojo.condition.Account_Condition) Account_(indi.mybatis.flying.pojo.Account_) LinkedList(java.util.LinkedList) Test(org.junit.Test) DatabaseSetup(com.github.springtestdbunit.annotation.DatabaseSetup) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown)

Aggregations

Account_ (indi.mybatis.flying.pojo.Account_)42 Test (org.junit.Test)38 DatabaseTearDown (com.github.springtestdbunit.annotation.DatabaseTearDown)36 DatabaseSetup (com.github.springtestdbunit.annotation.DatabaseSetup)25 ExpectedDatabase (com.github.springtestdbunit.annotation.ExpectedDatabase)25 Account_Condition (indi.mybatis.flying.pojo.condition.Account_Condition)18 IfProfileValue (org.springframework.test.annotation.IfProfileValue)18 Role_ (indi.mybatis.flying.pojo.Role_)17 LoginLog_ (indi.mybatis.flying.pojo.LoginLog_)8 HashMap (java.util.HashMap)8 DatabaseSetups (com.github.springtestdbunit.annotation.DatabaseSetups)6 DatabaseTearDowns (com.github.springtestdbunit.annotation.DatabaseTearDowns)6 ExpectedDatabases (com.github.springtestdbunit.annotation.ExpectedDatabases)6 PageParam (indi.mybatis.flying.pagination.PageParam)6 Order (indi.mybatis.flying.pagination.Order)4 SortParam (indi.mybatis.flying.pagination.SortParam)4 ArrayList (java.util.ArrayList)4 LoginLogSource2 (indi.mybatis.flying.pojo.LoginLogSource2)3 Page (indi.mybatis.flying.pagination.Page)2 Account2_ (indi.mybatis.flying.pojo.Account2_)2