forked from ZUGFeRD/mustangproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
solves ZUGFeRD#227: create both non-shaded and shaded jar for library…
…, while not breaking CLI
- Loading branch information
Ulrich Zielhofer
committed
Dec 17, 2021
1 parent
2ba9607
commit 1ec64c6
Showing
6 changed files
with
261 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
Mustang-CLI/src/test/java/org/mustangproject/commandline/CliIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package org.mustangproject.commandline; | ||
|
||
import org.junit.Test; | ||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
import java.nio.charset.StandardCharsets; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.junit.Assert.assertTrue; | ||
|
||
public class CliIT { | ||
|
||
@Test | ||
public void testCii2Ubl() throws Exception { | ||
Path output = Paths.get("target/ubl.xml"); | ||
Files.deleteIfExists(output); | ||
Path jar = Files.newDirectoryStream(Paths.get("target"), "Mustang-CLI-*.jar").iterator().next(); | ||
ProcessBuilder pb = new ProcessBuilder("java", "-jar", jar.toString(), | ||
"--action", "ubl", "--source", "src/test/resources/cii.xml", "--out", | ||
output.toString()); | ||
pb.redirectErrorStream(true); | ||
Process process = pb.start(); | ||
String result = getOutput(process); | ||
process.waitFor(10, TimeUnit.SECONDS); | ||
if (!result.isEmpty()) { | ||
System.out.println(result); | ||
} | ||
assertTrue(new String(Files.readAllBytes(output), StandardCharsets.UTF_8).contains("Invoice")); | ||
} | ||
|
||
private String getOutput(Process process) throws IOException { | ||
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); | ||
StringBuilder builder = new StringBuilder(); | ||
String line; | ||
while ((line = reader.readLine()) != null) { | ||
builder.append(line); | ||
builder.append(System.getProperty("line.separator")); | ||
} | ||
return builder.toString(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<rsm:CrossIndustryInvoice xmlns:rsm="urn:un:unece:uncefact:data:standard:CrossIndustryInvoice:100" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ram="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100" xmlns:udt="urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100"> | ||
<rsm:ExchangedDocumentContext> | ||
<ram:GuidelineSpecifiedDocumentContextParameter> | ||
<ram:ID>urn:cen.eu:en16931:2017</ram:ID> | ||
</ram:GuidelineSpecifiedDocumentContextParameter> | ||
</rsm:ExchangedDocumentContext> | ||
<rsm:ExchangedDocument> | ||
<ram:ID>RE-20201121/508</ram:ID> | ||
<ram:TypeCode>380</ram:TypeCode> | ||
<ram:IssueDateTime> | ||
<udt:DateTimeString format="102">20201121</udt:DateTimeString> | ||
</ram:IssueDateTime> | ||
</rsm:ExchangedDocument> | ||
<rsm:SupplyChainTradeTransaction> | ||
<ram:IncludedSupplyChainTradeLineItem> | ||
<ram:AssociatedDocumentLineDocument> | ||
<ram:LineID>1</ram:LineID> | ||
</ram:AssociatedDocumentLineDocument> | ||
<ram:SpecifiedTradeProduct> | ||
<ram:Name>Design (hours)</ram:Name> | ||
<ram:Description>Of a sample invoice</ram:Description> | ||
</ram:SpecifiedTradeProduct> | ||
<ram:SpecifiedLineTradeAgreement> | ||
<ram:GrossPriceProductTradePrice> | ||
<ram:ChargeAmount>160.0000</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="HUR">1.0000</ram:BasisQuantity> | ||
</ram:GrossPriceProductTradePrice> | ||
<ram:NetPriceProductTradePrice> | ||
<ram:ChargeAmount>160.0000</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="HUR">1.0000</ram:BasisQuantity> | ||
</ram:NetPriceProductTradePrice> | ||
</ram:SpecifiedLineTradeAgreement> | ||
<ram:SpecifiedLineTradeDelivery> | ||
<ram:BilledQuantity unitCode="HUR">1.0000</ram:BilledQuantity> | ||
</ram:SpecifiedLineTradeDelivery> | ||
<ram:SpecifiedLineTradeSettlement> | ||
<ram:ApplicableTradeTax> | ||
<ram:TypeCode>VAT</ram:TypeCode> | ||
<ram:CategoryCode>S</ram:CategoryCode> | ||
<ram:RateApplicablePercent>7.00</ram:RateApplicablePercent> | ||
</ram:ApplicableTradeTax> | ||
<ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
<ram:LineTotalAmount>160.00</ram:LineTotalAmount> | ||
</ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
</ram:SpecifiedLineTradeSettlement> | ||
</ram:IncludedSupplyChainTradeLineItem> | ||
<ram:IncludedSupplyChainTradeLineItem> | ||
<ram:AssociatedDocumentLineDocument> | ||
<ram:LineID>2</ram:LineID> | ||
</ram:AssociatedDocumentLineDocument> | ||
<ram:SpecifiedTradeProduct> | ||
<ram:Name>Ballons</ram:Name> | ||
<ram:Description>various colors, ~2000ml</ram:Description> | ||
</ram:SpecifiedTradeProduct> | ||
<ram:SpecifiedLineTradeAgreement> | ||
<ram:GrossPriceProductTradePrice> | ||
<ram:ChargeAmount>0.7900</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="H87">1.0000</ram:BasisQuantity> | ||
</ram:GrossPriceProductTradePrice> | ||
<ram:NetPriceProductTradePrice> | ||
<ram:ChargeAmount>0.7900</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="H87">1.0000</ram:BasisQuantity> | ||
</ram:NetPriceProductTradePrice> | ||
</ram:SpecifiedLineTradeAgreement> | ||
<ram:SpecifiedLineTradeDelivery> | ||
<ram:BilledQuantity unitCode="H87">400.0000</ram:BilledQuantity> | ||
</ram:SpecifiedLineTradeDelivery> | ||
<ram:SpecifiedLineTradeSettlement> | ||
<ram:ApplicableTradeTax> | ||
<ram:TypeCode>VAT</ram:TypeCode> | ||
<ram:CategoryCode>S</ram:CategoryCode> | ||
<ram:RateApplicablePercent>19.00</ram:RateApplicablePercent> | ||
</ram:ApplicableTradeTax> | ||
<ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
<ram:LineTotalAmount>316.00</ram:LineTotalAmount> | ||
</ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
</ram:SpecifiedLineTradeSettlement> | ||
</ram:IncludedSupplyChainTradeLineItem> | ||
<ram:IncludedSupplyChainTradeLineItem> | ||
<ram:AssociatedDocumentLineDocument> | ||
<ram:LineID>3</ram:LineID> | ||
</ram:AssociatedDocumentLineDocument> | ||
<ram:SpecifiedTradeProduct> | ||
<ram:Name>Hot air „heiße Luft“ (litres)</ram:Name> | ||
<ram:Description/> | ||
</ram:SpecifiedTradeProduct> | ||
<ram:SpecifiedLineTradeAgreement> | ||
<ram:GrossPriceProductTradePrice> | ||
<ram:ChargeAmount>0.0250</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="LTR">1.0000</ram:BasisQuantity> | ||
</ram:GrossPriceProductTradePrice> | ||
<ram:NetPriceProductTradePrice> | ||
<ram:ChargeAmount>0.0250</ram:ChargeAmount> | ||
<ram:BasisQuantity unitCode="LTR">1.0000</ram:BasisQuantity> | ||
</ram:NetPriceProductTradePrice> | ||
</ram:SpecifiedLineTradeAgreement> | ||
<ram:SpecifiedLineTradeDelivery> | ||
<ram:BilledQuantity unitCode="LTR">800.0000</ram:BilledQuantity> | ||
</ram:SpecifiedLineTradeDelivery> | ||
<ram:SpecifiedLineTradeSettlement> | ||
<ram:ApplicableTradeTax> | ||
<ram:TypeCode>VAT</ram:TypeCode> | ||
<ram:CategoryCode>S</ram:CategoryCode> | ||
<ram:RateApplicablePercent>19.00</ram:RateApplicablePercent> | ||
</ram:ApplicableTradeTax> | ||
<ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
<ram:LineTotalAmount>20.00</ram:LineTotalAmount> | ||
</ram:SpecifiedTradeSettlementLineMonetarySummation> | ||
</ram:SpecifiedLineTradeSettlement> | ||
</ram:IncludedSupplyChainTradeLineItem> | ||
<ram:ApplicableHeaderTradeAgreement> | ||
<ram:BuyerReference>AB321</ram:BuyerReference> | ||
<ram:SellerTradeParty> | ||
<ram:Name>Bei Spiel GmbH</ram:Name> | ||
<ram:PostalTradeAddress> | ||
<ram:PostcodeCode>12345</ram:PostcodeCode> | ||
<ram:LineOne>Ecke 12</ram:LineOne> | ||
<ram:CityName>Stadthausen</ram:CityName> | ||
<ram:CountryID>DE</ram:CountryID> | ||
</ram:PostalTradeAddress> | ||
<ram:SpecifiedTaxRegistration> | ||
<ram:ID schemeID="VA">DE136695976</ram:ID> | ||
</ram:SpecifiedTaxRegistration> | ||
</ram:SellerTradeParty> | ||
<ram:BuyerTradeParty> | ||
<ram:ID>2</ram:ID> | ||
<ram:Name>Theodor Est</ram:Name> | ||
<ram:PostalTradeAddress> | ||
<ram:PostcodeCode>88802</ram:PostcodeCode> | ||
<ram:LineOne>Bahnstr. 42</ram:LineOne> | ||
<ram:CityName>Spielkreis</ram:CityName> | ||
<ram:CountryID>DE</ram:CountryID> | ||
</ram:PostalTradeAddress> | ||
</ram:BuyerTradeParty> | ||
</ram:ApplicableHeaderTradeAgreement> | ||
<ram:ApplicableHeaderTradeDelivery> | ||
<ram:ActualDeliverySupplyChainEvent> | ||
<ram:OccurrenceDateTime> | ||
<udt:DateTimeString format="102">20201110</udt:DateTimeString> | ||
</ram:OccurrenceDateTime> | ||
</ram:ActualDeliverySupplyChainEvent> | ||
</ram:ApplicableHeaderTradeDelivery> | ||
<ram:ApplicableHeaderTradeSettlement> | ||
<ram:PaymentReference>RE-20201121/508</ram:PaymentReference> | ||
<ram:InvoiceCurrencyCode>EUR</ram:InvoiceCurrencyCode> | ||
<ram:SpecifiedTradeSettlementPaymentMeans> | ||
<ram:TypeCode>42</ram:TypeCode> | ||
<ram:Information>Bank transfer</ram:Information> | ||
<ram:PayeePartyCreditorFinancialAccount> | ||
<ram:IBANID>DE88200800000970375700</ram:IBANID> | ||
<ram:AccountName>Max Mustermann</ram:AccountName> | ||
</ram:PayeePartyCreditorFinancialAccount> | ||
<ram:PayeeSpecifiedCreditorFinancialInstitution> | ||
<ram:BICID>COBADEFFXXX</ram:BICID> | ||
</ram:PayeeSpecifiedCreditorFinancialInstitution> | ||
</ram:SpecifiedTradeSettlementPaymentMeans> | ||
<ram:ApplicableTradeTax> | ||
<ram:CalculatedAmount>11.20</ram:CalculatedAmount> | ||
<ram:TypeCode>VAT</ram:TypeCode> | ||
<ram:BasisAmount>160.00</ram:BasisAmount> | ||
<ram:CategoryCode>S</ram:CategoryCode> | ||
<ram:RateApplicablePercent>7.00</ram:RateApplicablePercent> | ||
</ram:ApplicableTradeTax> | ||
<ram:ApplicableTradeTax> | ||
<ram:CalculatedAmount>63.84</ram:CalculatedAmount> | ||
<ram:TypeCode>VAT</ram:TypeCode> | ||
<ram:BasisAmount>336.00</ram:BasisAmount> | ||
<ram:CategoryCode>S</ram:CategoryCode> | ||
<ram:RateApplicablePercent>19.00</ram:RateApplicablePercent> | ||
</ram:ApplicableTradeTax> | ||
<ram:SpecifiedTradePaymentTerms> | ||
<ram:Description>Zahlbar ohne Abzug bis 12.12.2020</ram:Description> | ||
<ram:DueDateDateTime> | ||
<udt:DateTimeString format="102">20201212</udt:DateTimeString> | ||
</ram:DueDateDateTime> | ||
</ram:SpecifiedTradePaymentTerms> | ||
<ram:SpecifiedTradeSettlementHeaderMonetarySummation> | ||
<ram:LineTotalAmount>496.00</ram:LineTotalAmount> | ||
<ram:ChargeTotalAmount>0.00</ram:ChargeTotalAmount> | ||
<ram:AllowanceTotalAmount>0.00</ram:AllowanceTotalAmount> | ||
<ram:TaxBasisTotalAmount>496.00</ram:TaxBasisTotalAmount> | ||
<ram:TaxTotalAmount currencyID="EUR">75.04</ram:TaxTotalAmount> | ||
<ram:GrandTotalAmount>571.04</ram:GrandTotalAmount> | ||
<ram:TotalPrepaidAmount>0.00</ram:TotalPrepaidAmount> | ||
<ram:DuePayableAmount>571.04</ram:DuePayableAmount> | ||
</ram:SpecifiedTradeSettlementHeaderMonetarySummation> | ||
</ram:ApplicableHeaderTradeSettlement> | ||
</rsm:SupplyChainTradeTransaction> | ||
</rsm:CrossIndustryInvoice> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters