/central/src/test/java/com/github/rinde/rinsim/central/SolverValidatorTest.java

http://github.com/rinde/RinSim · Java · 654 lines · 550 code · 56 blank · 48 comment · 0 complexity · 23d4751b7870c269ee2ce9d5c8816e1c MD5 · raw file

  1. /*
  2. * Copyright (C) 2011-2018 Rinde R.S. van Lon
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.github.rinde.rinsim.central;
  17. import static com.google.common.truth.Truth.assertThat;
  18. import static org.mockito.Mockito.mock;
  19. import javax.measure.unit.SI;
  20. import org.junit.Test;
  21. import com.github.rinde.rinsim.central.GlobalStateObject.VehicleStateObject;
  22. import com.github.rinde.rinsim.core.model.pdp.Parcel;
  23. import com.github.rinde.rinsim.core.model.pdp.VehicleDTO;
  24. import com.github.rinde.rinsim.core.model.road.RoadModelSnapshot;
  25. import com.github.rinde.rinsim.geom.Connection;
  26. import com.github.rinde.rinsim.geom.Point;
  27. import com.github.rinde.rinsim.testutil.TestUtil;
  28. import com.github.rinde.rinsim.util.TimeWindow;
  29. import com.google.common.base.Optional;
  30. import com.google.common.collect.ImmutableList;
  31. import com.google.common.collect.ImmutableSet;
  32. /**
  33. * @author Rinde van Lon
  34. *
  35. */
  36. public class SolverValidatorTest {
  37. static final Point POINT = new Point(0, 0);
  38. static final Parcel p1 = parcel("p1");
  39. static final Parcel p2 = parcel("p2");
  40. static final Parcel p3 = parcel("p3");
  41. static final Parcel p4 = parcel("p4");
  42. static final Parcel p5 = parcel("p5");
  43. static final Optional<Connection<?>> absent = Optional.absent();
  44. @Test
  45. public void validateNegativeTime() {
  46. final GlobalStateObject state = GlobalStateObject.create(
  47. ImmutableSet.<Parcel>of(), ImmutableList.<VehicleStateObject>of(), -1,
  48. SI.SECOND, SI.METERS_PER_SECOND, SI.METER, mock(RoadModelSnapshot.class));
  49. boolean fail = false;
  50. try {
  51. SolverValidator.validateInputs(state);
  52. } catch (final IllegalArgumentException e) {
  53. fail = true;
  54. assertThat(e.getMessage()).contains("Time must be >= 0");
  55. }
  56. assertThat(fail).isTrue();
  57. }
  58. @Test
  59. public void validateNegativeRemainingTime() {
  60. final VehicleStateObject vs1 =
  61. VehicleStateObject.create(vdto(), POINT, absent,
  62. ImmutableSet.of(p1), -1, p2, ImmutableList.<Parcel>of());
  63. final GlobalStateObject state = GlobalStateObject.create(
  64. ImmutableSet.<Parcel>of(),
  65. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  66. mock(RoadModelSnapshot.class));
  67. boolean fail = false;
  68. try {
  69. SolverValidator.validateInputs(state);
  70. } catch (final IllegalArgumentException e) {
  71. assertThat(e.getMessage())
  72. .contains("Remaining service time must be >= 0");
  73. fail = true;
  74. }
  75. assertThat(fail).isTrue();
  76. }
  77. @Test
  78. public void validateParcelAvailableAndInInventory() {
  79. final VehicleStateObject vs1 =
  80. VehicleStateObject.create(vdto(), POINT, absent,
  81. ImmutableSet.of(p1), 0, p2, ImmutableList.<Parcel>of());
  82. final GlobalStateObject state = GlobalStateObject.create(
  83. ImmutableSet.of(p1), ImmutableList.of(vs1), 0, SI.SECOND,
  84. SI.METERS_PER_SECOND, SI.METER, mock(RoadModelSnapshot.class));
  85. boolean fail = false;
  86. try {
  87. SolverValidator.validateInputs(state);
  88. } catch (final IllegalArgumentException e) {
  89. fail = true;
  90. assertThat(e.getMessage()).contains(
  91. "Parcels can not be available AND in the inventory of a vehicle");
  92. }
  93. assertThat(fail).isTrue();
  94. }
  95. @Test(expected = IllegalArgumentException.class)
  96. public void validateParcelInTwoInventories() {
  97. final VehicleStateObject vs1 =
  98. VehicleStateObject.create(vdto(), POINT, absent,
  99. ImmutableSet.of(p1), 0, p2, ImmutableList.<Parcel>of());
  100. final VehicleStateObject vs2 =
  101. VehicleStateObject.create(vdto(), POINT, absent,
  102. ImmutableSet.of(p1), 0, p2, ImmutableList.<Parcel>of());
  103. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  104. final GlobalStateObject state = GlobalStateObject.create(empty,
  105. ImmutableList.of(vs1, vs2), 0, SI.SECOND, SI.METERS_PER_SECOND,
  106. SI.METER, mock(RoadModelSnapshot.class));
  107. SolverValidator.validateInputs(state);
  108. }
  109. @Test(expected = IllegalArgumentException.class)
  110. public void valiateInputsDestinationNotInContents() {
  111. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  112. final VehicleStateObject vs1 =
  113. VehicleStateObject.create(vdto(), POINT, absent,
  114. empty, 0, p1, ImmutableList.<Parcel>of());
  115. final VehicleStateObject vs2 =
  116. VehicleStateObject.create(vdto(), POINT, absent,
  117. ImmutableSet.of(p2, p1), 0, p1, ImmutableList.<Parcel>of());
  118. final GlobalStateObject state = GlobalStateObject.create(empty,
  119. ImmutableList.of(vs1, vs2), 0, SI.SECOND, SI.METERS_PER_SECOND,
  120. SI.METER, mock(RoadModelSnapshot.class));
  121. SolverValidator.validateInputs(state);
  122. }
  123. /**
  124. * One route is present, one is not.
  125. */
  126. @Test(expected = IllegalArgumentException.class)
  127. public void validateInvalidCurrentRoute1() {
  128. final Point p = new Point(0, 0);
  129. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  130. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p1));
  131. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(), p, absent,
  132. ImmutableSet.of(p2), 0, null, null);
  133. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  134. final GlobalStateObject state = GlobalStateObject.create(available,
  135. ImmutableList.of(vs1, vs2), 0, SI.SECOND, SI.METERS_PER_SECOND,
  136. SI.METER, mock(RoadModelSnapshot.class));
  137. SolverValidator.validateInputs(state);
  138. }
  139. /**
  140. * Parcel 2 occurs in two different routes.
  141. */
  142. @Test(expected = IllegalArgumentException.class)
  143. public void validateInvalidCurrentRoute2() {
  144. final Point p = new Point(0, 0);
  145. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  146. ImmutableSet.<Parcel>of(), 0, p1, ImmutableList.of(p1, p2, p1, p2));
  147. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(), p, absent,
  148. ImmutableSet.<Parcel>of(), 0, null, ImmutableList.of(p2, p2));
  149. final ImmutableSet<Parcel> available = ImmutableSet.of(p1, p2);
  150. final GlobalStateObject state = GlobalStateObject.create(available,
  151. ImmutableList.of(vs1, vs2), 0, SI.SECOND, SI.METERS_PER_SECOND,
  152. SI.METER, mock(RoadModelSnapshot.class));
  153. SolverValidator.validateInputs(state);
  154. }
  155. /**
  156. * Vehicle doesn't have its cargo in its route.
  157. */
  158. @Test(expected = IllegalArgumentException.class)
  159. public void validateInvalidCurrentRoute3() {
  160. final Point p = new Point(0, 0);
  161. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  162. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p3));
  163. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  164. final GlobalStateObject state = GlobalStateObject.create(available,
  165. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  166. mock(RoadModelSnapshot.class));
  167. SolverValidator.validateInputs(state);
  168. }
  169. /**
  170. * The first location in a route must match the destination field if not null.
  171. * In this test it is another parcel.
  172. */
  173. @Test(expected = IllegalArgumentException.class)
  174. public void validateInvalidCurrentRoute4a() {
  175. final Point p = new Point(0, 0);
  176. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  177. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p3, p1, p3));
  178. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  179. final GlobalStateObject state = GlobalStateObject.create(available,
  180. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  181. mock(RoadModelSnapshot.class));
  182. SolverValidator.validateInputs(state);
  183. }
  184. /**
  185. * The first location in a route must match the destination field if not null.
  186. * In this test the route is empty.
  187. */
  188. @Test(expected = IllegalArgumentException.class)
  189. public void validateInvalidCurrentRoute4b() {
  190. final Point p = new Point(0, 0);
  191. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  192. ImmutableSet.<Parcel>of(), 0, p1, ImmutableList.<Parcel>of());
  193. final ImmutableSet<Parcel> available = ImmutableSet.of(p1);
  194. final GlobalStateObject state = GlobalStateObject.create(available,
  195. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  196. mock(RoadModelSnapshot.class));
  197. SolverValidator.validateInputs(state);
  198. }
  199. /**
  200. * Duplicate in route.
  201. */
  202. @Test(expected = IllegalArgumentException.class)
  203. public void validateInvalidCurrentRoute5() {
  204. final Point p = new Point(0, 0);
  205. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  206. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p1, p1, p3));
  207. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  208. final GlobalStateObject state = GlobalStateObject.create(available,
  209. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  210. mock(RoadModelSnapshot.class));
  211. SolverValidator.validateInputs(state);
  212. }
  213. /**
  214. * Only once occurence of available parcel, should occur twice.
  215. */
  216. @Test(expected = IllegalArgumentException.class)
  217. public void validateInvalidCurrentRoute6a() {
  218. final Point p = new Point(0, 0);
  219. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  220. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p1, p2));
  221. final ImmutableSet<Parcel> available = ImmutableSet.of(p2);
  222. final GlobalStateObject state = GlobalStateObject.create(available,
  223. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  224. mock(RoadModelSnapshot.class));
  225. SolverValidator.validateInputs(state);
  226. }
  227. /**
  228. * Too many occurences of available parcel, should occur twice.
  229. */
  230. @Test(expected = IllegalArgumentException.class)
  231. public void validateInvalidCurrentRoute6b() {
  232. final Point p = new Point(0, 0);
  233. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(), p, absent,
  234. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p1, p2, p2, p2));
  235. final ImmutableSet<Parcel> available = ImmutableSet.of(p2);
  236. final GlobalStateObject state = GlobalStateObject.create(available,
  237. ImmutableList.of(vs1), 0, SI.SECOND, SI.METERS_PER_SECOND, SI.METER,
  238. mock(RoadModelSnapshot.class));
  239. SolverValidator.validateInputs(state);
  240. }
  241. /**
  242. * Valid routes.
  243. */
  244. @Test
  245. public void validateValidCurrentRoutes() {
  246. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  247. final VehicleStateObject vs1 =
  248. VehicleStateObject.create(vdto(), POINT, absent,
  249. ImmutableSet.of(p1), 0, p1, ImmutableList.of(p1));
  250. final VehicleStateObject vs2 =
  251. VehicleStateObject.create(vdto(), POINT, absent,
  252. ImmutableSet.of(p2), 0, null, ImmutableList.of(p2));
  253. final VehicleStateObject vs3 =
  254. VehicleStateObject.create(vdto(), POINT, absent,
  255. empty, 0, p3, ImmutableList.<Parcel>of(p3, p3));
  256. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  257. final GlobalStateObject state = GlobalStateObject.create(available,
  258. ImmutableList.of(vs1, vs2, vs3), 0, SI.SECOND, SI.METERS_PER_SECOND,
  259. SI.CENTIMETER, mock(RoadModelSnapshot.class));
  260. SolverValidator.validateInputs(state);
  261. }
  262. @SuppressWarnings("null")
  263. @Test
  264. public void validateCorrectInputs() {
  265. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  266. final VehicleStateObject vs1 =
  267. VehicleStateObject.create(vdto(), POINT, absent,
  268. ImmutableSet.of(p1), 0, p1, null);
  269. final VehicleStateObject vs2 =
  270. VehicleStateObject.create(vdto(), POINT, absent,
  271. ImmutableSet.of(p2), 0, null, null);
  272. final VehicleStateObject vs3 =
  273. VehicleStateObject.create(vdto(), POINT, absent,
  274. empty, 0, p3, null);
  275. final ImmutableSet<Parcel> available = ImmutableSet.of(p3);
  276. final GlobalStateObject state = GlobalStateObject.create(available,
  277. ImmutableList.of(vs1, vs2, vs3), 0, SI.SECOND, SI.METERS_PER_SECOND,
  278. SI.CENTIMETER, mock(RoadModelSnapshot.class));
  279. SolverValidator.validateInputs(state);
  280. }
  281. @Test
  282. public void validateInvalidNumberOfRoutes() {
  283. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  284. POINT, absent, ImmutableSet.<Parcel>of(), 0, null, null);
  285. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of();
  286. final GlobalStateObject state = GlobalStateObject.create(
  287. ImmutableSet.<Parcel>of(), ImmutableList.of(vs1), 0, SI.SECOND,
  288. SI.METERS_PER_SECOND, SI.CENTIMETER, mock(RoadModelSnapshot.class));
  289. boolean fail = false;
  290. try {
  291. SolverValidator.validateOutputs(routes, state);
  292. } catch (final IllegalArgumentException e) {
  293. assertThat(e.getMessage()).contains("found 0 routes with 1 vehicles");
  294. fail = true;
  295. }
  296. assertThat(fail).isTrue();
  297. }
  298. @Test
  299. public void validateParcelInTwoRoutes() {
  300. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  301. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  302. new Point(0,
  303. 0),
  304. absent,
  305. empty, 0, null, null);
  306. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(),
  307. new Point(0,
  308. 0),
  309. absent,
  310. empty, 0, null, null);
  311. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of(
  312. ImmutableList.of(p1, p1), ImmutableList.of(p1, p1));
  313. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1);
  314. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1,
  315. vs2);
  316. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  317. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  318. mock(RoadModelSnapshot.class));
  319. boolean fail = false;
  320. try {
  321. SolverValidator.validateOutputs(routes, state);
  322. } catch (final IllegalArgumentException e) {
  323. assertThat(e.getMessage())
  324. .contains("Found a parcel which is already in another route");
  325. fail = true;
  326. }
  327. assertThat(fail).isTrue();
  328. }
  329. @Test
  330. public void validateParcelTooManyTimes1() {
  331. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  332. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  333. new Point(0,
  334. 0),
  335. absent,
  336. empty, 0, null, null);
  337. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList
  338. .of(ImmutableList.of(p1, p1, p1));
  339. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1);
  340. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1);
  341. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  342. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  343. mock(RoadModelSnapshot.class));
  344. boolean fail = false;
  345. try {
  346. SolverValidator.validateOutputs(routes, state);
  347. } catch (final IllegalArgumentException e) {
  348. assertThat(e.getMessage()).contains("found 3 occurence(s) of parcel p1");
  349. fail = true;
  350. }
  351. assertThat(fail).isTrue();
  352. }
  353. @Test
  354. public void validateParcelTooManyTimes2() {
  355. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  356. new Point(0,
  357. 0),
  358. absent,
  359. ImmutableSet.of(p1), 0, null, null);
  360. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList
  361. .of(ImmutableList.of(p1, p1));
  362. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of();
  363. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1);
  364. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  365. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  366. mock(RoadModelSnapshot.class));
  367. boolean fail = false;
  368. try {
  369. SolverValidator.validateOutputs(routes, state);
  370. } catch (final IllegalArgumentException e) {
  371. assertThat(e.getMessage()).contains("found 2 occurences of parcel p1");
  372. fail = true;
  373. }
  374. assertThat(fail).isTrue();
  375. }
  376. @Test
  377. public void validateParcelNotInCargo() {
  378. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  379. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  380. new Point(0,
  381. 0),
  382. absent,
  383. empty, 0, null, null);
  384. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList
  385. .of(ImmutableList.of(p1));
  386. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of();
  387. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1);
  388. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  389. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  390. mock(RoadModelSnapshot.class));
  391. boolean fail = false;
  392. try {
  393. SolverValidator.validateOutputs(routes, state);
  394. } catch (final IllegalArgumentException e) {
  395. fail = true;
  396. assertThat(e.getMessage())
  397. .contains("The parcel in this route is not available");
  398. }
  399. assertThat(fail).isTrue();
  400. }
  401. @Test
  402. public void validateUnknownParcelInRoute() {
  403. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  404. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  405. new Point(0,
  406. 0),
  407. absent,
  408. empty, 0, null, null);
  409. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(),
  410. new Point(0,
  411. 0),
  412. absent,
  413. empty, 0, null, null);
  414. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of(
  415. ImmutableList.of(p1, p1), ImmutableList.of(p2, p3, p3, p2));
  416. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1, p2);
  417. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1,
  418. vs2);
  419. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  420. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  421. mock(RoadModelSnapshot.class));
  422. boolean fail = false;
  423. try {
  424. SolverValidator.validateOutputs(routes, state);
  425. } catch (final IllegalArgumentException e) {
  426. assertThat(e.getMessage())
  427. .contains("parcel in this route is not available");
  428. fail = true;
  429. }
  430. assertThat(fail).isTrue();
  431. }
  432. @Test
  433. public void validateIncompleteRoute1() {
  434. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  435. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  436. new Point(0,
  437. 0),
  438. absent,
  439. empty, 0, null, null);
  440. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(),
  441. new Point(0,
  442. 0),
  443. absent,
  444. empty, 0, null, null);
  445. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of(
  446. ImmutableList.of(p1, p1), ImmutableList.of(p2, p2));
  447. final ImmutableSet<Parcel> availableParcels = ImmutableSet
  448. .of(p1, p2, p3);
  449. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1,
  450. vs2);
  451. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  452. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  453. mock(RoadModelSnapshot.class));
  454. boolean fail = false;
  455. try {
  456. SolverValidator.validateOutputs(routes, state);
  457. } catch (final IllegalArgumentException e) {
  458. assertThat(e.getMessage()).contains(
  459. "number of distinct parcels in the routes should equal the number of parcels");
  460. fail = true;
  461. }
  462. assertThat(fail).isTrue();
  463. }
  464. @Test
  465. public void validateIncompleteRouteForVehicle() {
  466. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  467. new Point(0,
  468. 0),
  469. absent,
  470. ImmutableSet.of(p1), 0, null, null);
  471. final ImmutableList<Parcel> empty = ImmutableList.of();
  472. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList
  473. .of(empty);
  474. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of();
  475. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1);
  476. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  477. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  478. mock(RoadModelSnapshot.class));
  479. boolean fail = false;
  480. try {
  481. SolverValidator.validateOutputs(routes, state);
  482. } catch (final IllegalArgumentException e) {
  483. assertThat(e.getMessage())
  484. .contains("doesn't visit all parcels in its cargo");
  485. fail = true;
  486. }
  487. assertThat(fail).isTrue();
  488. }
  489. @Test
  490. public void validateOutputDestinationNotFirstInRoute() {
  491. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  492. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  493. new Point(0,
  494. 0),
  495. absent,
  496. empty, 0, p1, null);
  497. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList
  498. .of(ImmutableList.of(p2, p1, p1, p2));
  499. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1, p2);
  500. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1);
  501. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  502. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  503. mock(RoadModelSnapshot.class));
  504. boolean fail = false;
  505. try {
  506. SolverValidator.validateOutputs(routes, state);
  507. } catch (final IllegalArgumentException e) {
  508. assertThat(e.getMessage())
  509. .contains("should start with its current destination");
  510. fail = true;
  511. }
  512. assertThat(fail).isTrue();
  513. }
  514. @SuppressWarnings("null")
  515. @Test
  516. public void validateCorrectOutput() {
  517. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  518. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  519. new Point(0,
  520. 0),
  521. absent,
  522. empty, 0, null, null);
  523. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(),
  524. new Point(0,
  525. 0),
  526. absent,
  527. ImmutableSet.of(p3), 0, null, null);
  528. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of(
  529. ImmutableList.of(p1, p1), ImmutableList.of(p2, p3, p2));
  530. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1, p2);
  531. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1,
  532. vs2);
  533. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  534. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  535. mock(RoadModelSnapshot.class));
  536. SolverValidator.validateOutputs(routes, state);
  537. }
  538. @Test
  539. public void testWrap() throws InterruptedException {
  540. TestUtil.testPrivateConstructor(SolverValidator.class);
  541. final ImmutableSet<Parcel> empty = ImmutableSet.of();
  542. final VehicleStateObject vs1 = VehicleStateObject.create(vdto(),
  543. new Point(0,
  544. 0),
  545. absent,
  546. empty, 0, null, null);
  547. final VehicleStateObject vs2 = VehicleStateObject.create(vdto(),
  548. new Point(0,
  549. 0),
  550. absent,
  551. ImmutableSet.of(p3), 0, null, null);
  552. final VehicleStateObject vs3 = VehicleStateObject.create(vdto(),
  553. new Point(0,
  554. 0),
  555. absent,
  556. empty, 0, p4, null);
  557. final ImmutableList<ImmutableList<Parcel>> routes = ImmutableList.of(
  558. ImmutableList.of(p1, p1), ImmutableList.of(p2, p3, p2),
  559. ImmutableList.of(p4, p5, p5, p4));
  560. final ImmutableSet<Parcel> availableParcels = ImmutableSet.of(p1, p2,
  561. p4, p5);
  562. final ImmutableList<VehicleStateObject> vehicles = ImmutableList.of(vs1,
  563. vs2, vs3);
  564. @SuppressWarnings("null")
  565. final GlobalStateObject state = GlobalStateObject.create(availableParcels,
  566. vehicles, 0, SI.SECOND, SI.METERS_PER_SECOND, SI.CENTIMETER,
  567. mock(RoadModelSnapshot.class));
  568. final Solver solver = SolverValidator.wrap(new FakeSolver(routes));
  569. solver.solve(state);
  570. }
  571. static Parcel parcel(final String name) {
  572. return new Parcel(Parcel.builder(new Point(0, 0), new Point(0, 0))
  573. .buildDTO()) {
  574. @Override
  575. public String toString() {
  576. return name;
  577. }
  578. };
  579. }
  580. static VehicleDTO vdto() {
  581. return VehicleDTO.builder()
  582. .startPosition(new Point(0, 0))
  583. .speed(1d)
  584. .capacity(1)
  585. .availabilityTimeWindow(TimeWindow.always())
  586. .build();
  587. }
  588. class FakeSolver implements Solver {
  589. ImmutableList<ImmutableList<Parcel>> answer;
  590. FakeSolver(ImmutableList<ImmutableList<Parcel>> answer) {
  591. this.answer = answer;
  592. }
  593. @Override
  594. public ImmutableList<ImmutableList<Parcel>> solve(GlobalStateObject state) {
  595. return answer;
  596. }
  597. }
  598. }