forked from invopop/gobl.fatturapa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayments_test.go
45 lines (37 loc) · 1.53 KB
/
payments_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package fatturapa_test
import (
"testing"
"github.com/invopop/gobl.fatturapa/test"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPaymentsSimple(t *testing.T) {
t.Run("should contain the supplier party info", func(t *testing.T) {
env := test.LoadTestFile("invoice-simple.json")
doc, err := test.ConvertFromGOBL(env)
require.NoError(t, err)
dp := doc.FatturaElettronicaBody[0].DatiPagamento
require.NotNil(t, dp)
assert.Equal(t, "TP02", dp.CondizioniPagamento)
assert.Len(t, dp.DettaglioPagamento, 1)
assert.Equal(t, "MP08", dp.DettaglioPagamento[0].ModalitaPagamento)
assert.Equal(t, "1388.40", dp.DettaglioPagamento[0].ImportoPagamento)
})
}
func TestPaymentsMultipleDueDates(t *testing.T) {
t.Run("should contain the customer party info", func(t *testing.T) {
env := test.LoadTestFile("invoice-irpef.json")
doc, err := test.ConvertFromGOBL(env)
require.NoError(t, err)
dp := doc.FatturaElettronicaBody[0].DatiPagamento
require.NotNil(t, dp)
assert.Equal(t, "TP01", dp.CondizioniPagamento)
assert.Len(t, dp.DettaglioPagamento, 2)
assert.Equal(t, "MP05", dp.DettaglioPagamento[0].ModalitaPagamento)
assert.Equal(t, "2023-03-02", dp.DettaglioPagamento[0].DataScadenzaPagamento)
assert.Equal(t, "500.00", dp.DettaglioPagamento[0].ImportoPagamento)
assert.Equal(t, "MP05", dp.DettaglioPagamento[1].ModalitaPagamento)
assert.Equal(t, "2023-04-02", dp.DettaglioPagamento[1].DataScadenzaPagamento)
assert.Equal(t, "544.40", dp.DettaglioPagamento[1].ImportoPagamento)
})
}