Update dependency com.helger.en16931-cii2ubl
v1.3.0 -> v1.4.2 Adjust test
This commit is contained in:
@@ -102,7 +102,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.helger</groupId>
|
<groupId>com.helger</groupId>
|
||||||
<artifactId>en16931-cii2ubl</artifactId>
|
<artifactId>en16931-cii2ubl</artifactId>
|
||||||
<version>1.3.0</version>
|
<version>1.4.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
|
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
@@ -24,22 +24,31 @@ package org.mustangproject.ZUGFeRD;
|
|||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
import org.junit.FixMethodOrder;
|
import org.assertj.core.api.Assertions;
|
||||||
import org.junit.runners.MethodSorters;
|
import org.junit.jupiter.api.Order;
|
||||||
import org.mustangproject.*;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.mustangproject.BankDetails;
|
||||||
import org.mustangproject.CII.CIIToUBL;
|
import org.mustangproject.CII.CIIToUBL;
|
||||||
|
import org.mustangproject.Contact;
|
||||||
|
import org.mustangproject.Invoice;
|
||||||
|
import org.mustangproject.Item;
|
||||||
|
import org.mustangproject.Product;
|
||||||
|
import org.mustangproject.TradeParty;
|
||||||
|
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
|
||||||
public class UBLTest extends ResourceCase {
|
public class UBLTest extends ResourceCase {
|
||||||
final String TARGET_XML = "./target/testout-1Lieferschein.xml";
|
final String TARGET_XML = "./target/testout-1Lieferschein.xml";
|
||||||
|
|
||||||
|
public UBLTest() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(2)
|
||||||
public void testUBLBasic() {
|
public void testUBLBasic() {
|
||||||
|
|
||||||
// the writing part
|
// the writing part
|
||||||
@@ -52,21 +61,23 @@ public class UBLTest extends ResourceCase {
|
|||||||
try {
|
try {
|
||||||
final File tempFile = File.createTempFile("ZUGFeRD-UBL-", "-test");
|
final File tempFile = File.createTempFile("ZUGFeRD-UBL-", "-test");
|
||||||
c2u.convert(input, tempFile);
|
c2u.convert(input, tempFile);
|
||||||
expected = ResourceUtilities.readFile(StandardCharsets.UTF_8, expectedFile.getAbsolutePath()).replaceAll("\r\n", "\n");
|
expected = ResourceUtilities.readFile(StandardCharsets.UTF_8, expectedFile.getAbsolutePath());//.replaceAll("\r\n", "\n");
|
||||||
result = ResourceUtilities.readFile(StandardCharsets.UTF_8, tempFile.getAbsolutePath()).replaceAll("\r\n", "\n");
|
result = ResourceUtilities.readFile(StandardCharsets.UTF_8, tempFile.getAbsolutePath());//.replaceAll("\r\n", "\n");
|
||||||
} catch (final IOException e) {
|
} catch (final IOException e) {
|
||||||
fail("Exception should not happen: " + e.getMessage());
|
fail("Exception should not happen: " + e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
assertNotNull(result);
|
assertNotNull(result);
|
||||||
assertEquals(expected, result);
|
Assertions.assertThat(result).isXmlEqualTo(expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(1)
|
||||||
public void test1Lieferschein() {
|
public void test1Lieferschein() {
|
||||||
|
|
||||||
EinLieferscheinExporter oe = new EinLieferscheinExporter();
|
final EinLieferscheinExporter oe = new EinLieferscheinExporter();
|
||||||
Invoice i = new Invoice().setDueDate(new Date()).setIssueDate(new Date()).setDeliveryDate(new Date())
|
final Invoice i = new Invoice().setDueDate(new Date()).setIssueDate(new Date()).setDeliveryDate(new Date())
|
||||||
.setSender(new TradeParty("Test company", "teststr", "55232", "teststadt", "DE").addTaxID("DE4711").addVATID("DE0815").setContact(new Contact("Hans Test", "+49123456789", "test@example.org")).addBankDetails(new BankDetails("DE12500105170648489890", "COBADEFXXX")))
|
.setSender(new TradeParty("Test company", "teststr", "55232", "teststadt", "DE").addTaxID("DE4711").addVATID("DE0815").setContact(new Contact("Hans Test", "+49123456789", "test@example.org")).addBankDetails(new BankDetails("DE12500105170648489890", "COBADEFXXX")))
|
||||||
.setRecipient(new TradeParty("Franz Müller", "teststr.12", "55232", "Entenhausen", "DE"))
|
.setRecipient(new TradeParty("Franz Müller", "teststr.12", "55232", "Entenhausen", "DE"))
|
||||||
.setReferenceNumber("991-01484-64")//leitweg-id
|
.setReferenceNumber("991-01484-64")//leitweg-id
|
||||||
@@ -75,13 +86,13 @@ public class UBLTest extends ResourceCase {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
oe.setTransaction(i);
|
oe.setTransaction(i);
|
||||||
ByteArrayOutputStream baos=new ByteArrayOutputStream();
|
final ByteArrayOutputStream baos=new ByteArrayOutputStream();
|
||||||
oe.export(baos);
|
oe.export(baos);
|
||||||
|
|
||||||
String theXML = baos.toString("UTF-8");
|
final String theXML = baos.toString("UTF-8");
|
||||||
assertTrue(theXML.contains("<DespatchAdvice"));
|
assertTrue(theXML.contains("<DespatchAdvice"));
|
||||||
Files.write(Paths.get(TARGET_XML), theXML.getBytes(StandardCharsets.UTF_8));
|
Files.write(Paths.get(TARGET_XML), theXML.getBytes(StandardCharsets.UTF_8));
|
||||||
} catch (IOException e) {
|
} catch (final IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:cec="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
|
<Invoice xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
||||||
<cbc:CustomizationID>urn:cen.eu:en16931:2017:extended:urn:fdc:peppol.eu:2017:poacc:billing:3.0</cbc:CustomizationID>
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
||||||
|
xmlns:cec="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2">
|
||||||
|
<cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0</cbc:CustomizationID>
|
||||||
<cbc:ProfileID>urn:fdc:peppol.eu:2017:poacc:billing:01:1.0</cbc:ProfileID>
|
<cbc:ProfileID>urn:fdc:peppol.eu:2017:poacc:billing:01:1.0</cbc:ProfileID>
|
||||||
<cbc:ID>RE-20201121/508</cbc:ID>
|
<cbc:ID>RE-20201121/508</cbc:ID>
|
||||||
<cbc:IssueDate>2020-11-21</cbc:IssueDate>
|
<cbc:IssueDate>2020-11-21</cbc:IssueDate>
|
||||||
|
|||||||
Reference in New Issue
Block a user