Search in sources :

Example 1 with Role_

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

the class TransactiveService method addAccountTransactive2.

@Transactional(rollbackFor = { ConfigurerException.class }, readOnly = false, propagation = Propagation.REQUIRED, isolation = Isolation.READ_COMMITTED)
public void addAccountTransactive2() {
    Role_ role2 = new Role_();
    role2.setName("role_");
    roleService.insert(role2);
}
Also used : Role_(indi.mybatis.flying.pojo.Role_) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with Role_

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

the class TransactiveService method addAccountTransactive.

@Transactional(rollbackFor = { ConfigurerException.class }, readOnly = false, propagation = Propagation.REQUIRED, isolation = Isolation.READ_COMMITTED)
public void addAccountTransactive() throws ConfigurerException {
    Role_ role2 = new Role_();
    role2.setName("role_");
    roleService.insert(role2);
    throw new ConfigurerException("qwe");
}
Also used : Role_(indi.mybatis.flying.pojo.Role_) ConfigurerException(indi.mybatis.flying.exceptions.ConfigurerException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with Role_

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

the class AccountTest method testDeputy2.

/**
 * 更多的测试deputyRole
 */
@Test
@DatabaseSetup(type = DatabaseOperation.CLEAN_INSERT, value = "/indi/mybatis/flying/test/accountTest/testDeputy2.xml")
@ExpectedDatabase(assertionMode = DatabaseAssertionMode.NON_STRICT, value = "/indi/mybatis/flying/test/accountTest/testDeputy2.result.xml")
@DatabaseTearDown(type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/accountTest/testDeputy2.xml")
public void testDeputy2() {
    Role_ rc = new Role_();
    rc.setName("role1");
    Role_ rdc = new Role_();
    rdc.setName("role2");
    Account_ ac = new Account_();
    ac.setRole(rc);
    ac.setRoleDeputy(rdc);
    Collection<Account_> accountC = accountService.selectAll(ac);
    Assert.assertEquals(1, accountC.size());
    int count = accountService.count(ac);
    Assert.assertEquals(1, count);
    Account_ ac2 = new Account_();
    ac2.setRole(rc);
    Collection<Account_> accountC2 = accountService.selectAll(ac2);
    Assert.assertEquals(2, accountC2.size());
    int count2 = accountService.count(ac2);
    Assert.assertEquals(2, count2);
    Account_ ac3 = new Account_();
    ac3.setRoleDeputy(rdc);
    Collection<Account_> accountC3 = accountService.selectAll(ac3);
    Assert.assertEquals(2, accountC3.size());
    int count3 = accountService.count(ac3);
    Assert.assertEquals(2, count3);
    Account_ ac4 = new Account_();
    Collection<Account_> accountC4 = accountService.selectAll(ac4);
    Assert.assertEquals(4, accountC4.size());
    int count4 = accountService.count(ac4);
    Assert.assertEquals(4, count4);
}
Also used : Account_(indi.mybatis.flying.pojo.Account_) Role_(indi.mybatis.flying.pojo.Role_) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) Test(org.junit.Test) DatabaseSetup(com.github.springtestdbunit.annotation.DatabaseSetup) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown)

Example 4 with Role_

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

the class CacheTest method testPaginationUsingCacheIndeed.

/* 一个证明分页确实使用了缓存的测试用例 */
@Test
@IfProfileValue(name = "CACHE", value = "true")
@ExpectedDatabase(connection = "dataSource1", assertionMode = DatabaseAssertionMode.NON_STRICT_UNORDERED, value = "/indi/mybatis/flying/test/cacheTest/testPaginationUsingCacheIndeed.result.xml")
@DatabaseTearDown(connection = "dataSource1", type = DatabaseOperation.DELETE_ALL, value = "/indi/mybatis/flying/test/cacheTest/testPaginationUsingCacheIndeed.result.xml")
public void testPaginationUsingCacheIndeed() {
    Role_ role1 = new Role_(), role2 = new Role_(), role3 = new Role_();
    role1.setName("normal");
    roleService.insert(role1);
    role2.setName("silver");
    roleService.insert(role2);
    role3.setName("gold");
    roleService.insert(role3);
    Role_Condition rc = new Role_Condition();
    rc.setLimiter(new PageParam(1, 2));
    rc.setSorter(new SortParam(new Order("name", Conditionable.Sequence.asc)));
    Collection<Role_> c1 = roleService.selectAll(rc);
    Assert.assertEquals(2, c1.size());
    Role_[] roles = c1.toArray(new Role_[c1.size()]);
    Assert.assertEquals("gold", roles[0].getName());
    Map<String, Object> m = new HashMap<>(4);
    m.put("name", "gold1");
    m.put("id", roles[0].getId());
    roleService.updateDirect(m);
    Role_Condition rc2 = new Role_Condition();
    rc2.setLimiter(new PageParam(1, 2));
    rc2.setSorter(new SortParam(new Order("name", Conditionable.Sequence.asc)));
    Collection<Role_> c2 = roleService.selectAll(rc2);
    Assert.assertEquals(2, c2.size());
    Role_[] roles2 = c2.toArray(new Role_[c2.size()]);
    Assert.assertEquals("gold", roles2[0].getName());
}
Also used : Order(indi.mybatis.flying.pagination.Order) Role_Condition(indi.mybatis.flying.pojo.condition.Role_Condition) HashMap(java.util.HashMap) PageParam(indi.mybatis.flying.pagination.PageParam) Role_(indi.mybatis.flying.pojo.Role_) SortParam(indi.mybatis.flying.pagination.SortParam) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) Test(org.junit.Test) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown) IfProfileValue(org.springframework.test.annotation.IfProfileValue)

Example 5 with Role_

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

the class CacheTest method testUpdateDirect.

/* 测试在select查询的情况下,缓存确实生效的用例 */
// @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 testUpdateDirect() {
    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_ account = accountService.select(1);
    Assert.assertEquals("ann", account.getRole().getName());
    Map<String, Object> m = new HashMap<>(4);
    m.put("id", 1);
    m.put("name", "bob");
    roleService.updateDirect(m);
    Account_ account2 = accountService.select(1);
    Assert.assertEquals("ann", account2.getRole().getName());
}
Also used : HashMap(java.util.HashMap) Account_(indi.mybatis.flying.pojo.Account_) Role_(indi.mybatis.flying.pojo.Role_) ExpectedDatabase(com.github.springtestdbunit.annotation.ExpectedDatabase) DatabaseTearDown(com.github.springtestdbunit.annotation.DatabaseTearDown) IfProfileValue(org.springframework.test.annotation.IfProfileValue)

Aggregations

Role_ (indi.mybatis.flying.pojo.Role_)23 IfProfileValue (org.springframework.test.annotation.IfProfileValue)18 DatabaseTearDown (com.github.springtestdbunit.annotation.DatabaseTearDown)17 ExpectedDatabase (com.github.springtestdbunit.annotation.ExpectedDatabase)17 Account_ (indi.mybatis.flying.pojo.Account_)17 Test (org.junit.Test)16 HashMap (java.util.HashMap)9 DatabaseSetup (com.github.springtestdbunit.annotation.DatabaseSetup)4 PageParam (indi.mybatis.flying.pagination.PageParam)4 Account_Condition (indi.mybatis.flying.pojo.condition.Account_Condition)4 DatabaseSetups (com.github.springtestdbunit.annotation.DatabaseSetups)3 DatabaseTearDowns (com.github.springtestdbunit.annotation.DatabaseTearDowns)3 ExpectedDatabases (com.github.springtestdbunit.annotation.ExpectedDatabases)3 LoginLog_ (indi.mybatis.flying.pojo.LoginLog_)3 Transactional (org.springframework.transaction.annotation.Transactional)3 Page (indi.mybatis.flying.pagination.Page)2 Role2_ (indi.mybatis.flying.pojo.Role2_)2 Configurer2Exception (indi.mybatis.flying.exceptions.Configurer2Exception)1 ConfigurerException (indi.mybatis.flying.exceptions.ConfigurerException)1 Order (indi.mybatis.flying.pagination.Order)1