forked from Mirrors/jsonapi
297 lines
5.4 KiB
Go
297 lines
5.4 KiB
Go
package jsonapi
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io"
|
|
"regexp"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
type BadModel struct {
|
|
Id int `jsonapi:"primary"`
|
|
}
|
|
|
|
func TestMalformedTag(t *testing.T) {
|
|
out := new(BadModel)
|
|
err := UnmarshalPayload(samplePayload(), out)
|
|
if err == nil {
|
|
t.Fatalf("Did not error out with wrong number of arguments in tag")
|
|
}
|
|
|
|
r := regexp.MustCompile(`two few arguments`)
|
|
|
|
if !r.Match([]byte(err.Error())) {
|
|
t.Fatalf("The err was not due two two few arguments in a tag")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalSetsId(t *testing.T) {
|
|
in := samplePayloadWithId()
|
|
out := new(Blog)
|
|
|
|
if err := UnmarshalPayload(in, out); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.Id != 2 {
|
|
t.Fatalf("Did not set Id on dst interface")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalSetsAttrs(t *testing.T) {
|
|
out, err := unmarshalSamplePayload()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.CreatedAt.IsZero() {
|
|
t.Fatalf("Did not parse time")
|
|
}
|
|
|
|
if out.ViewCount != 1000 {
|
|
t.Fatalf("View count not properly serialized")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalRelationships(t *testing.T) {
|
|
out, err := unmarshalSamplePayload()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.CurrentPost == nil {
|
|
t.Fatalf("Current post was not materialized")
|
|
}
|
|
|
|
if out.CurrentPost.Title != "Bas" || out.CurrentPost.Body != "Fuubar" {
|
|
t.Fatalf("Attributes were not set")
|
|
}
|
|
|
|
if len(out.Posts) != 2 {
|
|
t.Fatalf("There should have been 2 posts")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalNestedRelationships(t *testing.T) {
|
|
out, err := unmarshalSamplePayload()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.CurrentPost == nil {
|
|
t.Fatalf("Current post was not materialized")
|
|
}
|
|
|
|
if out.CurrentPost.Comments == nil {
|
|
t.Fatalf("Did not materialize nested records, comments")
|
|
}
|
|
|
|
if len(out.CurrentPost.Comments) != 2 {
|
|
t.Fatalf("Wrong number of comments")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalRelationshipsSideloaded(t *testing.T) {
|
|
payload := samplePayloadWithSideloaded()
|
|
out := new(Blog)
|
|
|
|
if err := UnmarshalPayload(payload, out); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.CurrentPost == nil {
|
|
t.Fatalf("Current post was not materialized")
|
|
}
|
|
|
|
if out.CurrentPost.Title != "Foo" || out.CurrentPost.Body != "Bar" {
|
|
t.Fatalf("Attributes were not set")
|
|
}
|
|
|
|
if len(out.Posts) != 2 {
|
|
t.Fatalf("There should have been 2 posts")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalNestedRelationshipsSideloaded(t *testing.T) {
|
|
payload := samplePayloadWithSideloaded()
|
|
out := new(Blog)
|
|
|
|
if err := UnmarshalPayload(payload, out); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if out.CurrentPost == nil {
|
|
t.Fatalf("Current post was not materialized")
|
|
}
|
|
|
|
if out.CurrentPost.Comments == nil {
|
|
t.Fatalf("Did not materialize nested records, comments")
|
|
}
|
|
|
|
if len(out.CurrentPost.Comments) != 2 {
|
|
t.Fatalf("Wrong number of comments")
|
|
}
|
|
|
|
if out.CurrentPost.Comments[0].Body != "foo" {
|
|
t.Fatalf("Comment body not set")
|
|
}
|
|
}
|
|
|
|
func unmarshalSamplePayload() (*Blog, error) {
|
|
in := samplePayload()
|
|
out := new(Blog)
|
|
|
|
if err := UnmarshalPayload(in, out); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return out, nil
|
|
}
|
|
|
|
func samplePayload() io.Reader {
|
|
payload := &OnePayload{
|
|
Data: &Node{
|
|
Type: "blogs",
|
|
Attributes: map[string]interface{}{
|
|
"title": "New blog",
|
|
"created_at": 1436216820,
|
|
"view_count": 1000,
|
|
},
|
|
Relationships: map[string]interface{}{
|
|
"posts": &RelationshipManyNode{
|
|
Data: []*Node{
|
|
&Node{
|
|
Type: "posts",
|
|
Attributes: map[string]interface{}{
|
|
"title": "Foo",
|
|
"body": "Bar",
|
|
},
|
|
},
|
|
&Node{
|
|
Type: "posts",
|
|
Attributes: map[string]interface{}{
|
|
"title": "X",
|
|
"body": "Y",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"current_post": &RelationshipOneNode{
|
|
Data: &Node{
|
|
Type: "posts",
|
|
Attributes: map[string]interface{}{
|
|
"title": "Bas",
|
|
"body": "Fuubar",
|
|
},
|
|
Relationships: map[string]interface{}{
|
|
"comments": &RelationshipManyNode{
|
|
Data: []*Node{
|
|
&Node{
|
|
Type: "comments",
|
|
Attributes: map[string]interface{}{
|
|
"body": "Great post!",
|
|
},
|
|
},
|
|
&Node{
|
|
Type: "comments",
|
|
Attributes: map[string]interface{}{
|
|
"body": "Needs some work!",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
out := bytes.NewBuffer(nil)
|
|
|
|
json.NewEncoder(out).Encode(payload)
|
|
|
|
return out
|
|
}
|
|
|
|
func samplePayloadWithId() io.Reader {
|
|
payload := &OnePayload{
|
|
Data: &Node{
|
|
Id: "2",
|
|
Type: "blogs",
|
|
Attributes: map[string]interface{}{
|
|
"title": "New blog",
|
|
"view_count": 1000,
|
|
},
|
|
},
|
|
}
|
|
|
|
out := bytes.NewBuffer(nil)
|
|
|
|
json.NewEncoder(out).Encode(payload)
|
|
|
|
return out
|
|
}
|
|
|
|
func samplePayloadWithSideloaded() io.Reader {
|
|
testModel := &Blog{
|
|
Id: 5,
|
|
Title: "Title 1",
|
|
CreatedAt: time.Now(),
|
|
Posts: []*Post{
|
|
&Post{
|
|
Id: 1,
|
|
Title: "Foo",
|
|
Body: "Bar",
|
|
Comments: []*Comment{
|
|
&Comment{
|
|
Id: 1,
|
|
Body: "foo",
|
|
},
|
|
&Comment{
|
|
Id: 2,
|
|
Body: "bar",
|
|
},
|
|
},
|
|
},
|
|
&Post{
|
|
Id: 2,
|
|
Title: "Fuubar",
|
|
Body: "Bas",
|
|
Comments: []*Comment{
|
|
&Comment{
|
|
Id: 1,
|
|
Body: "foo",
|
|
},
|
|
&Comment{
|
|
Id: 3,
|
|
Body: "bas",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CurrentPost: &Post{
|
|
Id: 1,
|
|
Title: "Foo",
|
|
Body: "Bar",
|
|
Comments: []*Comment{
|
|
&Comment{
|
|
Id: 1,
|
|
Body: "foo",
|
|
},
|
|
&Comment{
|
|
Id: 2,
|
|
Body: "bar",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
out := bytes.NewBuffer(nil)
|
|
MarshalOnePayload(out, testModel)
|
|
|
|
return out
|
|
}
|