123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- /*
- * EliasDB
- *
- * Copyright 2016 Matthias Ladkau. All rights reserved.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
- package graphql
- import (
- "encoding/json"
- "fmt"
- "testing"
- "devt.de/krotik/eliasdb/graph"
- "devt.de/krotik/eliasdb/graph/data"
- "devt.de/krotik/eliasdb/graph/graphstorage"
- )
- func TestErrorCases(t *testing.T) {
- gm, _ := songGraphGroups()
- query := map[string]interface{}{
- "operationName": "foo",
- "variables": nil,
- }
- _, err := RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Mandatory field 'query' missing from query object" {
- t.Error("Unexpected result:", err)
- return
- }
- query = map[string]interface{}{
- "query": nil,
- "variables": nil,
- }
- _, err = RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Mandatory field 'operationName' missing from query object" {
- t.Error("Unexpected result:", err)
- return
- }
- query = map[string]interface{}{
- "operationName": "foo",
- "query": nil,
- }
- _, err = RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Mandatory field 'variables' missing from query object" {
- t.Error("Unexpected result:", err)
- return
- }
- }
- func TestSimpleQueries(t *testing.T) {
- gm, _ := songGraphGroups()
- ast, err := ParseQuery("test", "{ name }")
- if err != nil || ast.String() != `
- Document
- ExecutableDefinition
- OperationDefinition
- SelectionSet
- Field
- Name: name
- `[1:] {
- t.Error("Unexpected result:", ast, err)
- }
- ast, err = ParseQuery("test", "{ name ")
- if err == nil || err.Error() != "Parse error in test: Unexpected end (Line:1 Pos:7)" {
- t.Error("Unexpected result:", ast, err)
- }
- query := map[string]interface{}{
- "operationName": "foo",
- "query": `
- {
- Song {
- key
- }
- }
- `,
- "variables": nil,
- }
- _, err = RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Fatal GraphQL operation error in test: Missing operation (Operation foo not found) (Line:2 Pos:2)" {
- t.Error("Unexpected result:", err)
- return
- }
- query = map[string]interface{}{
- "operationName": nil,
- "query": nil,
- "variables": nil,
- }
- _, err = RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Fatal GraphQL operation error in test: Missing operation (No executable expression found) (Line:1 Pos:0)" {
- t.Error("Unexpected result:", err)
- return
- }
- query = map[string]interface{}{
- "operationName": nil,
- "query": `
- fragment friendFields on User {
- id
- name
- profilePic(size: 50)
- }
- `,
- "variables": nil,
- }
- res, err := RunQuery("test", "main", query, gm, nil, false)
- if err == nil || err.Error() != "Fatal GraphQL operation error in test: Missing operation (No executable expression found) (Line:2 Pos:2)" {
- t.Error("Unexpected result:", res, err)
- return
- }
- query = map[string]interface{}{
- "operationName": nil,
- "query": `
- {
- Song1 : Song {
- song_key : key
- song_key1 : key
- song_key1 : name # This is illegal and will be ignored
- song_key1 : key
- name
- name
- }
- group {
- key
- },
- }
- `,
- "variables": nil,
- }
- if rerr := checkResult(`
- {
- "data": {
- "Song1": [
- {
- "name": "StrangeSong1",
- "song_key": "StrangeSong1",
- "song_key1": "StrangeSong1"
- },
- {
- "name": "FightSong4",
- "song_key": "FightSong4",
- "song_key1": "FightSong4"
- },
- {
- "name": "DeadSong2",
- "song_key": "DeadSong2",
- "song_key1": "DeadSong2"
- },
- {
- "name": "LoveSong3",
- "song_key": "LoveSong3",
- "song_key1": "LoveSong3"
- },
- {
- "name": "MyOnlySong3",
- "song_key": "MyOnlySong3",
- "song_key1": "MyOnlySong3"
- },
- {
- "name": "Aria1",
- "song_key": "Aria1",
- "song_key1": "Aria1"
- },
- {
- "name": "Aria2",
- "song_key": "Aria2",
- "song_key1": "Aria2"
- },
- {
- "name": "Aria3",
- "song_key": "Aria3",
- "song_key1": "Aria3"
- },
- {
- "name": "Aria4",
- "song_key": "Aria4",
- "song_key1": "Aria4"
- }
- ],
- "group": [
- {
- "key": "Best"
- }
- ]
- },
- "errors": [
- {
- "locations": [
- {
- "column": 17,
- "line": 3
- }
- ],
- "message": "Field identifier song_key1 used multiple times",
- "path": [
- "Song1"
- ]
- },
- {
- "locations": [
- {
- "column": 17,
- "line": 3
- }
- ],
- "message": "Field identifier name used multiple times",
- "path": [
- "Song1"
- ]
- }
- ]
- }`[1:], query, gm); rerr != nil {
- t.Error(rerr)
- return
- }
- query = map[string]interface{}{
- "operationName": nil,
- "query": `
- fragment Song on Song {
- key
- name1 : name
- ...SongKind
- }
- query b { # This should be executed
- Song {
- key
- ...Song
- }
- }
- query a {
- Song1 {
- key1
- }
- }
- fragment SongKind on Song {
- kind
- name2 : name
- key
- }
- `,
- "variables": nil,
- }
- if rerr := checkResult(`
- {
- "data": {
- "Song": [
- {
- "key": "StrangeSong1",
- "kind": "Song",
- "name1": "StrangeSong1",
- "name2": "StrangeSong1"
- },
- {
- "key": "FightSong4",
- "kind": "Song",
- "name1": "FightSong4",
- "name2": "FightSong4"
- },
- {
- "key": "DeadSong2",
- "kind": "Song",
- "name1": "DeadSong2",
- "name2": "DeadSong2"
- },
- {
- "key": "LoveSong3",
- "kind": "Song",
- "name1": "LoveSong3",
- "name2": "LoveSong3"
- },
- {
- "key": "MyOnlySong3",
- "kind": "Song",
- "name1": "MyOnlySong3",
- "name2": "MyOnlySong3"
- },
- {
- "key": "Aria1",
- "kind": "Song",
- "name1": "Aria1",
- "name2": "Aria1"
- },
- {
- "key": "Aria2",
- "kind": "Song",
- "name1": "Aria2",
- "name2": "Aria2"
- },
- {
- "key": "Aria3",
- "kind": "Song",
- "name1": "Aria3",
- "name2": "Aria3"
- },
- {
- "key": "Aria4",
- "kind": "Song",
- "name1": "Aria4",
- "name2": "Aria4"
- }
- ]
- },
- "errors": [
- {
- "locations": [
- {
- "column": 9,
- "line": 8
- }
- ],
- "message": "Field identifier key used multiple times",
- "path": [
- "Song"
- ]
- }
- ]
- }`[1:], query, gm); rerr != nil {
- t.Error(rerr)
- return
- }
- }
- func checkResult(expectedResult string, query map[string]interface{}, gm *graph.Manager) error {
- actualResultObject, err := RunQuery("test", "main", query, gm, nil, false)
- if err == nil {
- var actualResultBytes []byte
- actualResultBytes, err = json.MarshalIndent(actualResultObject, "", " ")
- actualResult := string(actualResultBytes)
- if err == nil {
- if expectedResult != actualResult {
- err = fmt.Errorf("Unexpected result:\nExpected:\n%s\nActual:\n%s",
- expectedResult, actualResult)
- }
- }
- }
- if err != nil {
- fmt.Println(ParseQuery("test", fmt.Sprint(query["query"])))
- }
- return err
- }
- func songGraph() (*graph.Manager, *graphstorage.MemoryGraphStorage) {
- mgs := graphstorage.NewMemoryGraphStorage("mystorage")
- gm := graph.NewGraphManager(mgs)
- constructEdge := func(key string, node1 data.Node, node2 data.Node, number int) data.Edge {
- edge := data.NewGraphEdge()
- edge.SetAttr("key", key)
- edge.SetAttr("kind", "Wrote")
- edge.SetAttr(data.EdgeEnd1Key, node1.Key())
- edge.SetAttr(data.EdgeEnd1Kind, node1.Kind())
- edge.SetAttr(data.EdgeEnd1Role, "Author")
- edge.SetAttr(data.EdgeEnd1Cascading, true)
- edge.SetAttr(data.EdgeEnd2Key, node2.Key())
- edge.SetAttr(data.EdgeEnd2Kind, node2.Kind())
- edge.SetAttr(data.EdgeEnd2Role, "Song")
- edge.SetAttr(data.EdgeEnd2Cascading, false)
- edge.SetAttr("number", number)
- return edge
- }
- storeSong := func(node data.Node, name string, ranking int, number int) {
- node3 := data.NewGraphNode()
- node3.SetAttr("key", name)
- node3.SetAttr("kind", "Song")
- node3.SetAttr("name", name)
- node3.SetAttr("ranking", ranking)
- gm.StoreNode("main", node3)
- gm.StoreEdge("main", constructEdge(name, node, node3, number))
- }
- node0 := data.NewGraphNode()
- node0.SetAttr("key", "000")
- node0.SetAttr("kind", "Author")
- node0.SetAttr("name", "John")
- gm.StoreNode("main", node0)
- storeSong(node0, "Aria1", 8, 1)
- storeSong(node0, "Aria2", 2, 2)
- storeSong(node0, "Aria3", 4, 3)
- storeSong(node0, "Aria4", 18, 4)
- node1 := data.NewGraphNode()
- node1.SetAttr("key", "123")
- node1.SetAttr("kind", "Author")
- node1.SetAttr("name", "Mike")
- gm.StoreNode("main", node1)
- storeSong(node1, "LoveSong3", 1, 3)
- storeSong(node1, "FightSong4", 3, 4)
- storeSong(node1, "DeadSong2", 6, 2)
- storeSong(node1, "StrangeSong1", 5, 1)
- node2 := data.NewGraphNode()
- node2.SetAttr("key", "456")
- node2.SetAttr("kind", "Author")
- node2.SetAttr("name", "Hans")
- gm.StoreNode("main", node2)
- storeSong(node2, "MyOnlySong3", 19, 3)
- return gm, mgs.(*graphstorage.MemoryGraphStorage)
- }
- func songGraphGroups() (*graph.Manager, *graphstorage.MemoryGraphStorage) {
- gm, mgs := songGraph()
- node0 := data.NewGraphNode()
- node0.SetAttr("key", "Best")
- node0.SetAttr("kind", "group")
- gm.StoreNode("main", node0)
- constructEdge := func(songkey string) data.Edge {
- edge := data.NewGraphEdge()
- edge.SetAttr("key", songkey)
- edge.SetAttr("kind", "Contains")
- edge.SetAttr(data.EdgeEnd1Key, node0.Key())
- edge.SetAttr(data.EdgeEnd1Kind, node0.Kind())
- edge.SetAttr(data.EdgeEnd1Role, "group")
- edge.SetAttr(data.EdgeEnd1Cascading, false)
- edge.SetAttr(data.EdgeEnd2Key, songkey)
- edge.SetAttr(data.EdgeEnd2Kind, "Song")
- edge.SetAttr(data.EdgeEnd2Role, "Song")
- edge.SetAttr(data.EdgeEnd2Cascading, false)
- return edge
- }
- gm.StoreEdge("main", constructEdge("LoveSong3"))
- gm.StoreEdge("main", constructEdge("Aria3"))
- gm.StoreEdge("main", constructEdge("MyOnlySong3"))
- gm.StoreEdge("main", constructEdge("StrangeSong1"))
- return gm, mgs
- }
|