// // EntityStubs.swift // JSONAPITests // // Created by Mathew Polzin on 11/12/18. // let entity_no_relationships_no_attributes = """ { "id": "A24B3B69-4DF1-467F-B52E-B0C9E44F436A", "type": "test_entities" } """.data(using: .utf8)! let entity_no_relationships_some_attributes = """ { "id": "2DF03B69-4B0A-467F-B52E-B0C9E44FCECF", "type": "fifth_test_entities", "attributes": { "floater": 123.321 } } """.data(using: .utf8)! let entity_some_relationships_no_attributes = """ { "id": "11113B69-4DF1-467F-B52E-B0C9E44FC444", "type": "third_test_entities", "relationships": { "others": { "data": [{ "type": "test_entities", "id": "364B3B69-4DF1-467F-B52E-B0C9E44F666E" }] } } } """.data(using: .utf8)! let entity_some_relationships_some_attributes = """ { "id": "90F03B69-4DF1-467F-B52E-B0C9E44FC333", "type": "fourth_test_entities", "attributes": { "word": "coolio", "number": 992299, "array": [12.3, 4, 0.1] }, "relationships": { "other": { "data": { "type": "second_test_entities", "id": "2DF03B69-4B0A-467F-B52E-B0C9E44FCECF" } } } } """.data(using: .utf8)! let entity_some_relationships_some_attributes_with_meta = """ { "id": "90F03B69-4DF1-467F-B52E-B0C9E44FC333", "type": "fourth_test_entities", "attributes": { "word": "coolio", "number": 992299, "array": [12.3, 4, 0.1] }, "relationships": { "other": { "data": { "type": "second_test_entities", "id": "2DF03B69-4B0A-467F-B52E-B0C9E44FCECF" } } }, "meta": { "x": "world", "y": 5 }, "links": { "link1": "https://image.com/image.png" } } """.data(using: .utf8)! let entity_some_relationships_some_attributes_with_links = """ { "id": "90F03B69-4DF1-467F-B52E-B0C9E44FC333", "type": "fourth_test_entities", "attributes": { "word": "coolio", "number": 992299, "array": [12.3, 4, 0.1] }, "relationships": { "other": { "data": { "type": "second_test_entities", "id": "2DF03B69-4B0A-467F-B52E-B0C9E44FCECF" } } }, "links": { "link1": "https://image.com/image.png" } } """.data(using: .utf8)! let entity_some_relationships_some_attributes_with_meta_and_links = """ { "id": "90F03B69-4DF1-467F-B52E-B0C9E44FC333", "type": "fourth_test_entities", "attributes": { "word": "coolio", "number": 992299, "array": [12.3, 4, 0.1] }, "relationships": { "other": { "data": { "type": "second_test_entities", "id": "2DF03B69-4B0A-467F-B52E-B0C9E44FCECF" } } }, "meta": { "x": "world", "y": 5 }, "links": { "link1": "https://image.com/image.png" } } """.data(using: .utf8)! let entity_one_omitted_attribute = """ { "id": "1", "type": "sixth_test_entities", "attributes": { "here": "Hello", "maybeNull": "World" } } """.data(using: .utf8)! let entity_one_null_attribute = """ { "id": "1", "type": "sixth_test_entities", "attributes": { "here": "Hello", "maybeHere": "World", "maybeNull": null } } """.data(using: .utf8)! let entity_all_attributes = """ { "id": "1", "type": "sixth_test_entities", "attributes": { "here": "Hello", "maybeHere": "World", "maybeNull": "!" } } """.data(using: .utf8)! let entity_one_null_and_one_missing_attribute = """ { "id": "1", "type": "sixth_test_entities", "attributes": { "here": "Hello", "maybeNull": null } } """.data(using: .utf8)! let entity_broken_missing_nullable_attribute = """ { "id": "1", "type": "sixth_test_entities", "attributes": { "here": "Hello", "maybeHere": "World" } } """.data(using: .utf8)! let entity_null_optional_nullable_attribute = """ { "id": "1", "type": "seventh_test_entities", "attributes": { "here": "Hello", "maybeHereMaybeNull": null } } """.data(using: .utf8)! let entity_non_null_optional_nullable_attribute = """ { "id": "1", "type": "seventh_test_entities", "attributes": { "here": "Hello", "maybeHereMaybeNull": "World" } } """.data(using: .utf8)! let entity_int_to_string_attribute = """ { "id": "1", "type": "eighth_test_entities", "attributes": { "string": "22", "int": 22, "stringFromInt": 22, "plus": 22, "doubleFromInt": 22, "nullToString": null } } """.data(using: .utf8)! let entity_optional_not_omitted_relationship = """ { "id": "1", "type": "ninth_test_entities", "relationships": { "nullableOne": { "data": { "id": "3323", "type": "test_entities" } }, "one": { "data": { "id": "4459", "type": "test_entities" } }, "optionalNullableOne": { "data": { "id": "1229", "type": "test_entities" } } } } """.data(using: .utf8)! let entity_optional_nullable_nulled_relationship = """ { "id": "1", "type": "ninth_test_entities", "relationships": { "nullableOne": { "data": { "id": "3323", "type": "test_entities" } }, "one": { "data": { "id": "4459", "type": "test_entities" } }, "optionalNullableOne": { "data": null } } } """.data(using: .utf8)! let entity_omitted_relationship = """ { "id": "1", "type": "ninth_test_entities", "relationships": { "nullableOne": { "data": { "id": "3323", "type": "test_entities" } }, "one": { "data": { "id": "4459", "type": "test_entities" } } } } """.data(using: .utf8)! let entity_optional_to_many_relationship_not_omitted = """ { "id": "1", "type": "ninth_test_entities", "relationships": { "nullableOne": { "data": { "id": "3323", "type": "test_entities" } }, "one": { "data": { "id": "4459", "type": "test_entities" } }, "optionalMany": { "data": [ { "id": "332223", "type": "test_entities" } ] } } } """.data(using: .utf8)! let entity_nulled_relationship = """ { "id": "1", "type": "ninth_test_entities", "relationships": { "nullableOne": { "data": null }, "one": { "data": { "id": "4452", "type": "test_entities" } } } } """.data(using: .utf8)! let entity_self_ref_relationship = """ { "id": "1", "type": "tenth_test_entities", "relationships": { "selfRefs": { "data": [] }, "selfRef": { "data": { "id": "1", "type": "tenth_test_entities" } } } } """.data(using: .utf8)! let entity_invalid_validated_attribute = """ { "id": "1", "type": "eleventh_test_entities", "attributes": { "number": 10 } } """.data(using: .utf8)! let entity_valid_validated_attribute = """ { "id": "1", "type": "eleventh_test_entities", "attributes": { "number": 60 } } """.data(using: .utf8)! let entity_all_relationships_optional_and_omitted = """ { "id": "1", "type": "twelfth_test_entities", "attributes": { "number": 10 } } """.data(using: .utf8)! let entity_unidentified = """ { "type": "unidentified_test_entities", "attributes": {} } """.data(using: .utf8)! let entity_unidentified_with_attributes = """ { "type": "unidentified_test_entities", "attributes": { "me": "unknown" } } """.data(using: .utf8)! let entity_unidentified_with_attributes_and_meta = """ { "type": "unidentified_test_entities", "attributes": { "me": "unknown" }, "meta": { "x": "world", "y": 5 } } """.data(using: .utf8)! let entity_unidentified_with_attributes_and_links = """ { "type": "unidentified_test_entities", "attributes": { "me": "unknown" }, "links": { "link1": "https://image.com/image.png" } } """.data(using: .utf8)! let entity_unidentified_with_attributes_and_meta_and_links = """ { "type": "unidentified_test_entities", "attributes": { "me": "unknown" }, "meta": { "x": "world", "y": 5 }, "links": { "link1": "https://image.com/image.png" } } """.data(using: .utf8)!