-
Notifications
You must be signed in to change notification settings - Fork 0
/
document_create_test.go
52 lines (43 loc) · 1015 Bytes
/
document_create_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
46
47
48
49
50
package webservices_test
import (
"encoding/json"
"log"
"testing"
_ "github.com/joho/godotenv/autoload"
)
func TestDocumentCreate(t *testing.T) {
req := client.NewDocumentCreateRequest()
rb := `{
"DocumentCode": "00000667",
"DocumentName": "Leon Bogaert",
"DocumentStatus": "S",
"ContactEmail": "[email protected]",
"ContactFirstName": "Leon",
"ContactGender": "M",
"ContactLastName": "Bogaert",
"ContactTitle": "LS",
"CustomerType": "C",
"CustomerStatus": "A",
"DebtorCode": "00000667",
"DebtorNumber": "00000667",
"FaxNumber": null,
"InvoiceAddress": "Stadhuisplein 3",
"InvoiceAddress2": "",
"InvoiceAddress3": "",
"InvoiceAddressPostCode": "",
"InvoiceCity": "Terneuzen",
"InvoiceCountry": "NL",
"PhoneNumber": "",
"VATNumber": null
}`
err := json.Unmarshal([]byte(rb), req.RequestBody())
if err != nil {
t.Error(err)
}
resp, err := req.Do()
if err != nil {
t.Error(err)
}
b, _ := json.MarshalIndent(resp, "", " ")
log.Println(string(b))
}