package org.jeecg; import cn.com.ctop.crawler.modules.oceanengine.service.IOceanEngineService; import lombok.extern.slf4j.Slf4j; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest @Slf4j public class SampleTest { @Autowired private IOceanEngineService oceanEngineService; @Test public void testOceanEngineJob(){ String account="3248395570@qq.com"; String password = "Ydxq-704127411"; oceanEngineService.login(account,password); oceanEngineService.douyinHotHandler(1,1); oceanEngineService.effectCaseHandler(1); oceanEngineService.hotMaterialHandler(1,1,"西瓜"); oceanEngineService.hotMaterialHandler(1,3,"火山"); oceanEngineService.hotMaterialHandler(1,4,"抖音"); oceanEngineService.hotMaterialHandler(1,8,"头条"); oceanEngineService.hotMaterialHandler(1,9,"穿山甲"); log.info("巨量创意抓取完成"); } }