emailAuth DAO Test code

This commit is contained in:
geek 2017-06-26 15:59:53 +09:00
parent 2fdd9b6968
commit 3b42a0b12e

View File

@ -0,0 +1,49 @@
package com.loafle.overflow.module.email.dao;
import com.loafle.overflow.AppConfig;
import com.loafle.overflow.JdbcConfiguration;
import com.loafle.overflow.module.email.model.EmailAuth;
import com.loafle.overflow.module.member.model.Member;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import java.util.List;
import static org.junit.Assert.*;
/**
* Created by root on 17. 6. 23.
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {AppConfig.class, JdbcConfiguration.class})
public class EmailAuthDAOTest {
@Autowired
private EmailAuthDAO dao;
@Test
public void TestSaveEmailAuth() {
EmailAuth auth = new EmailAuth();
auth.setEmailAuthKey("dbseogns1234");
auth.setMember(new Member(1));
this.dao.save(auth);
}
@Test
public void TestFindByEmailAuthKey() {
EmailAuth auth = this.dao.findByEmailAuthKey("dbseogns1234");
assertEquals(1, auth.getId());
}
@Test
public void TestFindByMember() {
List<EmailAuth> auths = this.dao.findByMember(new Member((long)1));
assertEquals(1, auths.size());
}
}