forked from zombor/go-ebay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand_verify_add_fixed_price_item_integration_test.go
54 lines (48 loc) · 1.34 KB
/
command_verify_add_fixed_price_item_integration_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
51
52
53
54
// +build integration
package ebay
import (
"fmt"
"time"
)
func (s *EbayIntegrationTestSuite) Test_VerifyAddFixedPriceItem() {
now := time.Now().String()
c := VerifyAddFixedPriceItem{
Currency: "USD",
Country: "US",
ListingType: "FixedPriceItem",
Quantity: 10,
PaymentMethods: "PayPal",
ShippingDetails: &ShippingDetails{
ShippingType: "Flat",
ShippingServiceOptions: []ShippingServiceOption{
ShippingServiceOption{
ShippingService: "USPSFirstClass",
ShippingServiceCost: 1.00,
ShippingServiceAdditionalCost: 0.40,
},
},
},
PictureDetails: &PictureDetails{
PictureURL: "http://example.com/foo.png",
},
ListingDuration: "GTC",
PrimaryCategory: &PrimaryCategory{
CategoryID: "1234",
},
ReturnPolicy: &ReturnPolicy{
ReturnsAccepted: "ReturnsAccepted",
ReturnsAcceptedOption: "ReturnsAccepted",
ReturnsWithinOption: "Days_14",
RefundOption: "Days_14",
ShippingCostPaidByOption: "Buyer",
},
PostalCode: "60657",
StartPrice: "10.12",
Title: "The item title - " + now,
Description: "The item description - " + now,
PayPalEmailAddress: "[email protected]",
DispatchTimeMax: 1,
}
resp, err := s.ebayConf.RunCommand(c)
s.NoError(err, fmt.Sprintf("%#v", resp))
}