liujie
7 天以前 39e9e0600ed31ee6eff5c3b1287c36c7b7196b90
DriverQYTTravel/guns-admin/src/test/java/com/stylefeng/guns/GunsApplicationTest.java
@@ -1,17 +1,47 @@
package com.stylefeng.guns;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class GunsApplicationTest {
   @Test
   public void test() throws Exception {
   }
}
//package com.stylefeng.guns;
//
//import com.stylefeng.guns.modular.system.model.Driver;
//import com.stylefeng.guns.modular.system.service.IDriverService;
//import com.stylefeng.guns.modular.system.util.zhenglian.TokenUtil;
//import com.stylefeng.guns.modular.system.util.zhenglian.model.TokenRequest;
//import com.stylefeng.guns.modular.system.util.zhenglian.model.TradeTerminalInfo;
//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.data.mongodb.core.MongoTemplate;
//import org.springframework.test.context.junit4.SpringRunner;
//
//@RunWith(SpringRunner.class)
//@SpringBootTest
//public class GunsApplicationTest {
//
//   @Autowired
//   private MongoTemplate mongoTemplate;
//   @Autowired
//   private IDriverService driverService;
//
//
//   @Test
//   public void test() {
//
//      Driver driver = driverService.selectById(14);
//      TokenRequest tokenRequest = new TokenRequest();
//      tokenRequest.setAppUserId(driver.getEmpId().toString());
//      tokenRequest.setUserName(driver.getName());
//      tokenRequest.setCertNo(driver.getIdCard());
//      tokenRequest.setPhone(driver.getPhone());
//      TradeTerminalInfo tradeTerminalInfo = new TradeTerminalInfo();
//      tradeTerminalInfo.setIp("127.0.0.1");
//      tradeTerminalInfo.setTerminal("1");
//      tradeTerminalInfo.setMac("111-111-111-111");
//      tokenRequest.setTradeTerminalInfo(tradeTerminalInfo);
//      tokenRequest.setType("04");
//      try {
//         String token = TokenUtil.getToken(tokenRequest);
//         System.err.println(token);
//      } catch (Exception e) {
//         throw new RuntimeException(e);
//      }
//   }
//}