summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java
diff options
context:
space:
mode:
authorJohn Doe <john@doe.org>2021-04-16 14:14:03 +0200
committerJohn Doe <john@doe.org>2021-04-16 14:14:03 +0200
commit85dc353f9bad6397f718b0948f6f938d1bfba0c4 (patch)
tree4cc83e2b917e2a30b48460ac901a5e5fca1d1da5 /src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java
parentfixed wrong file permissions (diff)
parentMerge pull request #23 from UnionInternationalCheminsdeFer/fix_included_open_ticket (diff)
downloadUIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar.gz
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar.bz2
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar.lz
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar.xz
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.tar.zst
UIC-barcode-85dc353f9bad6397f718b0948f6f938d1bfba0c4.zip
Diffstat (limited to 'src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java')
-rw-r--r--src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java b/src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java
new file mode 100644
index 0000000..da167c4
--- /dev/null
+++ b/src/test/java/org/uic/barcode/ticket/api/test/OpenTicketComplexTestV2.java
@@ -0,0 +1,96 @@
+package org.uic.barcode.ticket.api.test;
+
+import java.text.ParseException;
+import java.util.TimeZone;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.uic.barcode.asn1.uper.UperEncoder;
+import org.uic.barcode.ticket.api.asn.omv2.UicRailTicketData;
+import org.uic.barcode.ticket.api.test.testtickets.OpenTestComplexTicketV2;
+
+
+
+/**
+ * The Class FipTimeZoneTestV2.
+ *
+ *
+ *
+ */
+public class OpenTicketComplexTestV2 {
+
+
+
+ /** The ticket decoded 1. */
+ UicRailTicketData ticket = null;
+
+ byte[] encodedInTimeZone1 = null;
+
+
+ TimeZone defaulttimeZone = null;
+
+ /**
+ * Prepare tickets.
+ */
+ @Before public void prepare() {
+
+ defaulttimeZone = TimeZone.getDefault();
+
+ //encode in UTC time zone
+ TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
+
+
+ }
+
+ /**
+ * clean up
+ */
+ @After public void resetTimeZone() {
+ TimeZone.setDefault(defaulttimeZone);
+ }
+
+
+ /**
+ * Test encode test tickets in UTC and decode in CET.
+ *
+ * @throws IllegalArgumentException the illegal argument exception
+ * @throws IllegalAccessException the illegal access exception
+ * @throws ParseException
+ */
+ @Test public void decoding() {
+
+ //get tickets
+ String hex = OpenTestComplexTicketV2.getEncodingHex();
+ byte[] content = UperEncoder.bytesFromHexString(hex);
+ ticket = UperEncoder.decode(content, UicRailTicketData.class);
+
+ assert(ticket != null);
+
+ }
+
+ @Test public void encoding() throws IllegalArgumentException, IllegalAccessException, ParseException {
+
+ //get tickets
+ String hex = OpenTestComplexTicketV2.getEncodingHex();
+ byte[] content = UperEncoder.bytesFromHexString(hex);
+ ticket = UperEncoder.decode(content, UicRailTicketData.class);
+
+
+ //ticket = OpenTestComplexTicketV2.getUicTestTicket();
+ byte[] encoded = UperEncoder.encode(ticket);
+
+
+
+ assert(encoded != null);
+ assert(encoded.length > 20);
+
+ String encodedHex = UperEncoder.hexStringFromBytes(encoded);
+ String expectedHex = OpenTestComplexTicketV2.getEncodingHex();
+
+ assert(expectedHex.equals(encodedHex));
+
+ }
+
+
+}