| | |
| | | package com.hxh.spring.test; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.google.gson.Gson; |
| | | import com.yeshi.buwan.dao.system.DetailSystemConfigDao; |
| | | import com.yeshi.buwan.dao.system.SystemConfigDao; |
| | | import com.yeshi.buwan.domain.HomeType; |
| | | import com.yeshi.buwan.domain.jump.JumpDetail; |
| | | import com.yeshi.buwan.domain.jump.JumpTypeEnum; |
| | | import com.yeshi.buwan.domain.system.DetailSystemConfig; |
| | | import com.yeshi.buwan.domain.system.SystemConfig; |
| | | import com.yeshi.buwan.dto.order.PPTVVideoPrice; |
| | | import com.yeshi.buwan.job.AdJob; |
| | | import com.yeshi.buwan.service.imp.DetailSystemConfigService; |
| | | import com.yeshi.buwan.service.inter.system.SystemConfigService; |
| | | import org.json.JSONObject; |
| | | import com.yeshi.buwan.util.rank.IqiyiRankUtil; |
| | | import com.yeshi.buwan.vo.ad.BannerVO; |
| | | import org.junit.Test; |
| | | import org.junit.runner.RunWith; |
| | | import org.springframework.test.context.ContextConfiguration; |
| | |
| | | import org.springframework.test.context.web.WebAppConfiguration; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.io.IOException; |
| | | import java.math.BigDecimal; |
| | | import java.math.BigInteger; |
| | | import java.util.Date; |
| | | |
| | | @RunWith(SpringJUnit4ClassRunner.class) |
| | |
| | | |
| | | @Resource |
| | | private SystemConfigDao systemConfigDao; |
| | | @Resource |
| | | private DetailSystemConfigDao detailSystemConfigDao; |
| | | |
| | | |
| | | @Test |
| | | public void addSystemConfig() { |
| | | SystemConfig systemConfig = new SystemConfig(); |
| | | // systemConfig.setBeizhu(""); |
| | | // systemConfig.setKey("iqiyi_update_video_name"); |
| | | // systemConfig.setName("爱奇艺特殊更新的视频名称"); |
| | | // systemConfig.setValue("《卧底》,没关系,是青春啊!,山海情(原声版),我的时代,你的时代,你好,安怡"); |
| | | // systemConfig.setCreateTime(new Date()); |
| | | // systemConfig.setId(SystemConfig.createId(systemConfig.getKey())); |
| | | // systemConfigDao.save(systemConfig); |
| | | // |
| | | // systemConfig = new SystemConfig(); |
| | | // systemConfig.setBeizhu(""); |
| | | // systemConfig.setKey("default_portrait"); |
| | | // systemConfig.setName("默认头像"); |
| | | // systemConfig.setValue("https://buwan-1255749512.cos.ap-guangzhou.myqcloud.com/resource/ic_portrait_default.png"); |
| | | // systemConfig.setCreateTime(new Date()); |
| | | // systemConfig.setId(SystemConfig.createId(systemConfig.getKey())); |
| | | // systemConfigDao.save(systemConfig); |
| | | |
| | | |
| | | systemConfig = new SystemConfig(); |
| | | systemConfig.setBeizhu(""); |
| | | systemConfig.setKey("iqiyi_update_video_name"); |
| | | systemConfig.setName("爱奇艺特殊更新的视频名称"); |
| | | systemConfig.setValue("《卧底》,没关系,是青春啊!,山海情(原声版),我的时代,你的时代,你好,安怡"); |
| | | systemConfig.setKey("buyVideoUrl"); |
| | | systemConfig.setName("单片购买链接"); |
| | | try { |
| | | systemConfig.setValue("http://vip.ysdq.yeshitv.com/buyVideo/index.html?infoId={infoId}"); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | systemConfig.setCreateTime(new Date()); |
| | | systemConfig.setId(SystemConfig.createId(systemConfig.getKey())); |
| | | systemConfigDao.save(systemConfig); |
| | | |
| | | |
| | | // systemConfig = new SystemConfig(); |
| | | // systemConfig.setBeizhu(""); |
| | | // systemConfig.setKey("goldCornRuleUrl"); |
| | | // systemConfig.setName("影视豆规则"); |
| | | // try { |
| | | // systemConfig.setValue("http://www.baidu.com"); |
| | | // } catch (Exception e) { |
| | | // e.printStackTrace(); |
| | | // } |
| | | // systemConfig.setCreateTime(new Date()); |
| | | // systemConfig.setId(SystemConfig.createId(systemConfig.getKey())); |
| | | // systemConfigDao.save(systemConfig); |
| | | } |
| | | |
| | | |
| | | @Test |
| | | public void addConfig() { |
| | | |
| | | JumpDetail jumpDetail = new JumpDetail(); |
| | | jumpDetail.setType(JumpTypeEnum.web); |
| | | jumpDetail.setNeedLogin(true); |
| | | JSONObject params = new JSONObject(); |
| | | params.put("url", "http://wwww.baidu.com"); |
| | | |
| | | BannerVO bannerVO = new BannerVO(); |
| | | bannerVO.setJumpDetail(jumpDetail); |
| | | bannerVO.setParams(params.toString()); |
| | | bannerVO.setPicture("https://reviveimg.hellorf.com/www/images/b360addb728e079ffb082a161475b14e.png"); |
| | | bannerVO.setRatio(new BigDecimal("0.1691")); |
| | | |
| | | DetailSystemConfig config = new DetailSystemConfig(); |
| | | config.setKey("mine_page_banner"); |
| | | config.setValue(new Gson().toJson(bannerVO)); |
| | | config.setBeizhu("我的页面广告banner"); |
| | | config.setSystemId(new BigInteger(44 + "")); |
| | | config.setMinVersion(109); |
| | | config.setCreatetime(System.currentTimeMillis() + ""); |
| | | detailSystemConfigDao.save(config); |
| | | } |
| | | |
| | | |