| | |
| | | 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; |
| | |
| | | @RunWith(SpringRunner.class) |
| | | @SpringBootTest |
| | | public class GunsApplicationTest { |
| | | |
| | | |
| | | @Autowired |
| | | private MongoTemplate mongoTemplate; |
| | | @Autowired |
| | | private IDriverService driverService; |
| | | |
| | | |
| | | @Test |
| | | public void test(){ |
| | | // GeoJsonPoint point = new GeoJsonPoint(new Point(Double.parseDouble("104.043149"), |
| | | // Double.parseDouble("30.642483"))); |
| | | // DriverPosition position = mongoTemplate.findOne(Query.query(Criteria.where("driverId") |
| | | // .is(14)), DriverPosition.class); |
| | | // if(null == position){ |
| | | // position = new DriverPosition(); |
| | | // } |
| | | // position.setDriverId(14); |
| | | // position.setPoint(point); |
| | | // mongoTemplate.save(position); |
| | | |
| | | |
| | | // Query query = Query.query(Criteria.where("point").nearSphere(new Point(Double.parseDouble("104.043149"), Double.parseDouble("30.642483"))).maxDistance(5000)); |
| | | // List<DriverPosition> driverPositions = mongoTemplate.find(query, DriverPosition.class); |
| | | // System.err.println(driverPositions); |
| | | 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); |
| | | } |
| | | } |
| | | } |