forked from loafle/openapi-generator-original
added test.go.bak
This commit is contained in:
parent
2cb498d9fb
commit
20bb1aa869
30
samples/client/petstore/go/test.go.bak
Normal file
30
samples/client/petstore/go/test.go.bak
Normal file
@ -0,0 +1,30 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
sw "./go-petstore"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
s := sw.NewPetApi()
|
||||
|
||||
// test POST(body)
|
||||
newPet := (sw.Pet{Id: 12830, Name: "gopher",
|
||||
PhotoUrls: []string{"http://1.com", "http://2.com"}, Status: "pending"})
|
||||
|
||||
jsonNewPet, _ := json.Marshal(newPet)
|
||||
fmt.Println("newPet:", string(jsonNewPet))
|
||||
s.AddPet(newPet)
|
||||
|
||||
// test POST(form)
|
||||
s.UpdatePetWithForm(12830, "golang", "available")
|
||||
|
||||
// test GET
|
||||
resp, apiResponse, err := s.GetPetById(12830)
|
||||
fmt.Println("GetPetById: ", resp, err, apiResponse)
|
||||
|
||||
err2, apiResponse2 := s.DeletePet(12830, "")
|
||||
fmt.Println("DeletePet: ", err2, apiResponse2)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user