| | |
| | | package com.hxh.spring.test.vip; |
| | | |
| | | import com.yeshi.buwan.domain.vip.UserVIPInfo; |
| | | import com.yeshi.buwan.domain.vip.VIPOrderRecord; |
| | | import com.yeshi.buwan.domain.vip.VIPPrice; |
| | | import com.yeshi.buwan.domain.vip.VIPPriceType; |
| | | import com.yeshi.buwan.domain.vip.*; |
| | | import com.yeshi.buwan.exception.PPTVException; |
| | | import com.yeshi.buwan.exception.ParamsException; |
| | | import com.yeshi.buwan.exception.order.OrderException; |
| | | import com.yeshi.buwan.exception.vip.VIPException; |
| | | import com.yeshi.buwan.exception.vip.VideoBuyRecordException; |
| | | import com.yeshi.buwan.job.OrderJob; |
| | | import com.yeshi.buwan.pptv.PPTVVipManager; |
| | | import com.yeshi.buwan.service.inter.order.OrderService; |
| | | import com.yeshi.buwan.service.inter.vip.VIPPriceService; |
| | | import com.yeshi.buwan.service.inter.vip.VIPService; |
| | | import com.yeshi.buwan.service.inter.vip.VideoBuyRecordService; |
| | | import com.yeshi.buwan.util.Constant; |
| | | import com.yeshi.buwan.util.HttpUtil; |
| | | import com.yeshi.buwan.util.log.LoggerUtil; |
| | | import com.yeshi.buwan.util.user.VipUtil; |
| | | import com.yeshi.buwan.util.vip.VIPOrderUtil; |
| | | import net.sf.json.JSONObject; |
| | | import org.junit.Test; |
| | | import org.junit.runner.RunWith; |
| | | import org.springframework.test.context.ContextConfiguration; |
| | | import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
| | | import org.springframework.test.context.web.WebAppConfiguration; |
| | | import org.yeshi.utils.entity.wx.WXAPPInfo; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.crypto.Cipher; |
| | | import javax.crypto.NoSuchPaddingException; |
| | | import javax.crypto.spec.GCMParameterSpec; |
| | | import javax.crypto.spec.SecretKeySpec; |
| | | import java.io.IOException; |
| | | import java.math.BigDecimal; |
| | | import java.security.GeneralSecurityException; |
| | | import java.security.InvalidAlgorithmParameterException; |
| | | import java.security.InvalidKeyException; |
| | | import java.security.NoSuchAlgorithmException; |
| | | import java.util.Base64; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | @Resource |
| | | private VIPService vipService; |
| | | |
| | | |
| | | @Resource |
| | | private OrderService orderService; |
| | | |
| | | @Resource |
| | | private PPTVVipManager pptvVipManager; |
| | | |
| | | @Resource |
| | | private OrderJob orderJob; |
| | | |
| | | @Resource |
| | | private VideoBuyRecordService videoBuyRecordService; |
| | | |
| | | @Test |
| | | public void addVIPPrice() { |
| | |
| | | @Test |
| | | public void addOrderRecord() { |
| | | VIPPrice price = vipPriceService.selectByPrimaryKey("172a8327fcd3685ab3c0f740d031da09"); |
| | | VIPOrderRecord record = new VIPOrderRecord(); |
| | | OrderRecord record = new OrderRecord(); |
| | | record.setMoney(price.getActualPrice()); |
| | | record.setType(price.getType()); |
| | | record.setUid(766693 + ""); |
| | | |
| | | try { |
| | | vipService.addVIPRecord(record); |
| | | } catch (VIPException e) { |
| | | orderService.createOrder(record); |
| | | } catch (OrderException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | @Test |
| | | public void listRecord() { |
| | | List<VIPOrderRecord> list = vipService.listOrderRecord(null, null, 1, 10); |
| | | long count = vipService.countOrderRecord(null, null); |
| | | List<OrderRecord> list = orderService.listOrderRecord(null, null, null, 1, 10); |
| | | long count = orderService.countOrderRecord(null, null, null); |
| | | |
| | | |
| | | list = vipService.listOrderRecord(766693 + "", null, 1, 10); |
| | | count = vipService.countOrderRecord(766693 + "", null); |
| | | list = orderService.listOrderRecord(766693 + "", null, null, 1, 10); |
| | | count = orderService.countOrderRecord(766693 + "", null, null); |
| | | |
| | | |
| | | list = vipService.listOrderRecord(766693 + "", VIPOrderRecord.STATE_NOT_PAY, 1, 10); |
| | | count = vipService.countOrderRecord(766693 + "", VIPOrderRecord.STATE_NOT_PAY); |
| | | list = orderService.listOrderRecord(766693 + "", null, OrderRecord.STATE_NOT_PAY, 1, 10); |
| | | count = orderService.countOrderRecord(766693 + "", null, OrderRecord.STATE_NOT_PAY); |
| | | |
| | | list = vipService.listOrderRecord(766693 + "", VIPOrderRecord.STATE_PAY, 1, 10); |
| | | count = vipService.countOrderRecord(766693 + "", VIPOrderRecord.STATE_PAY); |
| | | list = orderService.listOrderRecord(766693 + "", null, OrderRecord.STATE_PAY, 1, 10); |
| | | count = orderService.countOrderRecord(766693 + "", null, OrderRecord.STATE_PAY); |
| | | |
| | | System.out.println(list); |
| | | } |
| | |
| | | @Test |
| | | public void paySuccess() { |
| | | // try { |
| | | // vipService.paySuccess("",VIPOrderRecord.PAY_WAY_WX,new BigDecimal("14.8"),) |
| | | // vipService.paySuccess("",OrderRecord.PAY_WAY_WX,new BigDecimal("14.8"),) |
| | | // } catch (Exception e) { |
| | | // e.printStackTrace(); |
| | | // } |
| | |
| | | |
| | | @Test |
| | | public void test3() throws Exception { |
| | | VIPOrderRecord record = vipService.getOrderRecord("82"); |
| | | OrderRecord record = orderService.getOrderRecord("1000592"); |
| | | pptvVipManager.buyVIP(record); |
| | | } |
| | | |
| | | @Test |
| | | public void cancelOrder() { |
| | | try { |
| | | orderJob.cancelOrder("1000140"); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | @Test |
| | | public void addBuyVideoRecord() { |
| | | VideoBuyRecord record = new VideoBuyRecord(); |
| | | record.setId("123123"); |
| | | record.setGoodsNo("123123123"); |
| | | record.setStartTime(new Date()); |
| | | record.setEndTime(new Date(System.currentTimeMillis() + 1000 * 60 * 60 * 24L)); |
| | | record.setLoginUid("766693"); |
| | | record.setInfoId("381072"); |
| | | record.setCid("32459137"); |
| | | try { |
| | | videoBuyRecordService.addRecord(record); |
| | | } catch (ParamsException e) { |
| | | e.printStackTrace(); |
| | | } catch (VideoBuyRecordException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | @Test |
| | | public void buyVideo() { |
| | | try { |
| | | pptvVipManager.buyVideo(orderService.getOrderRecord("1000155")); |
| | | } catch (PPTVException e) { |
| | | e.printStackTrace(); |
| | | } catch (OrderException e) { |
| | | e.printStackTrace(); |
| | | } catch (VideoBuyRecordException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | |