added
probe task
This commit is contained in:
parent
d8c77d1af6
commit
ba0609fb6d
|
@ -0,0 +1,12 @@
|
|||
package com.loafle.overflow.module.probe.dao;
|
||||
|
||||
import com.loafle.overflow.module.probe.model.ProbeTask;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* Created by snoop on 17. 6. 26.
|
||||
*/
|
||||
@Repository
|
||||
public interface ProbeTaskDAO extends JpaRepository<ProbeTask, Long> {
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
package com.loafle.overflow.module.probe.dao;
|
||||
|
||||
import com.loafle.overflow.AppConfig;
|
||||
import com.loafle.overflow.JdbcConfiguration;
|
||||
import com.loafle.overflow.meta.model.MetaProbeTaskType;
|
||||
import com.loafle.overflow.module.probe.model.Probe;
|
||||
import com.loafle.overflow.module.probe.model.ProbeTask;
|
||||
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 static org.junit.Assert.*;
|
||||
|
||||
/**
|
||||
* Created by snoop on 17. 6. 26.
|
||||
*/
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = {AppConfig.class, JdbcConfiguration.class})
|
||||
public class ProbeTaskDAOTest {
|
||||
|
||||
@Autowired
|
||||
private ProbeTaskDAO probeTaskDAO;
|
||||
|
||||
|
||||
@Test
|
||||
public void Create() {
|
||||
|
||||
ProbeTask probeTask = new ProbeTask();
|
||||
|
||||
MetaProbeTaskType typeDiscovery = new MetaProbeTaskType();
|
||||
typeDiscovery.setId((short)1);
|
||||
|
||||
probeTask.setMetaProbeTaskType(typeDiscovery);
|
||||
probeTask.setData("");
|
||||
|
||||
Probe probe = new Probe();
|
||||
probe.setId(1);
|
||||
|
||||
probeTask.setProbe(probe);
|
||||
|
||||
this.probeTaskDAO.save(probeTask);
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user