123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637 |
- <?php
- namespace Mevdschee\PhpCrudApi\Tests;
-
- abstract class Tests extends TestBase
- {
- public function testListPosts()
- {
- $test = new Api($this);
- $test->get('/posts');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[1,1,1,"blog started"],[2,1,2,"It works!"]]}}');
- }
-
- public function testListPostColumns()
- {
- $test = new Api($this);
- $test->get('/posts?columns=id,content');
- $test->expect('{"posts":{"columns":["id","content"],"records":[[1,"blog started"],[2,"It works!"]]}}');
- }
-
- public function testListPostsWithTransform()
- {
- $test = new Api($this);
- $test->get('/posts?transform=1');
- $test->expect('{"posts":[{"id":1,"user_id":1,"category_id":1,"content":"blog started"},{"id":2,"user_id":1,"category_id":2,"content":"It works!"}]}');
- }
-
- public function testReadPost()
- {
- $test = new Api($this);
- $test->get('/posts/2');
- $test->expect('{"id":2,"user_id":1,"category_id":2,"content":"It works!"}');
- }
-
- public function testReadPosts()
- {
- $test = new Api($this);
- $test->get('/posts/1,2');
- $test->expect('[{"id":1,"user_id":1,"category_id":1,"content":"blog started"},{"id":2,"user_id":1,"category_id":2,"content":"It works!"}]');
- }
-
- public function testReadPostColumns()
- {
- $test = new Api($this);
- $test->get('/posts/2?columns=id,content');
- $test->expect('{"id":2,"content":"It works!"}');
- }
-
- public function testAddPost()
- {
- $test = new Api($this);
- $test->post('/posts', '{"user_id":1,"category_id":1,"content":"test"}');
- $test->expect('3');
- }
-
- public function testEditPost()
- {
- $test = new Api($this);
- $test->put('/posts/3', '{"user_id":1,"category_id":1,"content":"test (edited)"}');
- $test->expect('1');
- $test->get('/posts/3');
- $test->expect('{"id":3,"user_id":1,"category_id":1,"content":"test (edited)"}');
- }
-
- public function testEditPostColumnsMissingField()
- {
- $test = new Api($this);
- $test->put('/posts/3?columns=id,content', '{"content":"test (edited 2)"}');
- $test->expect('1');
- $test->get('/posts/3');
- $test->expect('{"id":3,"user_id":1,"category_id":1,"content":"test (edited 2)"}');
- }
-
- public function testEditPostColumnsExtraField()
- {
- $test = new Api($this);
- $test->put('/posts/3?columns=id,content', '{"user_id":2,"content":"test (edited 3)"}');
- $test->expect('1');
- $test->get('/posts/3');
- $test->expect('{"id":3,"user_id":1,"category_id":1,"content":"test (edited 3)"}');
- }
-
- public function testEditPostWithUtf8Content()
- {
- $utf8 = json_encode('Hello world, Καλημέρα κόσμε, コンニチハ');
- $test = new Api($this);
- $test->put('/posts/2', '{"content":'.$utf8.'}');
- $test->expect('1');
- $test->get('/posts/2');
- $test->expect('{"id":2,"user_id":1,"category_id":2,"content":'.$utf8.'}');
- }
-
- public function testEditPostWithUtf8ContentWithPost()
- {
- $utf8 = '€ Hello world, Καλημέρα κόσμε, コンニチハ';
- $url_encoded = urlencode($utf8);
- $json_encoded = json_encode($utf8);
- $test = new Api($this);
- $test->put('/posts/2', 'content='.$url_encoded);
- $test->expect('1');
- $test->get('/posts/2');
- $test->expect('{"id":2,"user_id":1,"category_id":2,"content":'.$json_encoded.'}');
- }
-
- public function testDeletePost()
- {
- $test = new Api($this);
- $test->delete('/posts/3');
- $test->expect('1');
- $test->get('/posts/3');
- $test->expect(false, 'Not found (object)');
- }
-
- public function testAddPostWithPost()
- {
- $test = new Api($this);
- $test->post('/posts', 'user_id=1&category_id=1&content=test');
- $test->expect('4');
- }
-
- public function testEditPostWithPost()
- {
- $test = new Api($this);
- $test->put('/posts/4', 'user_id=1&category_id=1&content=test+(edited)');
- $test->expect('1');
- $test->get('/posts/4');
- $test->expect('{"id":4,"user_id":1,"category_id":1,"content":"test (edited)"}');
- }
-
- public function testDeletePostWithPost()
- {
- $test = new Api($this);
- $test->delete('/posts/4');
- $test->expect('1');
- $test->get('/posts/4');
- $test->expect(false, 'Not found (object)');
- }
-
- public function testListWithPaginate()
- {
- $test = new Api($this);
- for ($i=1;$i<=10;$i++) {
- $test->post('/posts', '{"user_id":1,"category_id":1,"content":"#'.$i.'"}');
- $test->expect(4+$i);
- }
- $test->get('/posts?page=2,2&order=id');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[5,1,1,"#1"],[6,1,1,"#2"]],"results":11}}');
- }
-
- public function testListWithPaginateInMultipleOrder()
- {
- $test = new Api($this);
- $test->get('/posts?page=1,2&order[]=category_id,asc&order[]=id,desc');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[14,1,1,"#10"],[12,1,1,"#8"]],"results":11}}');
- }
-
- public function testListWithPaginateInDescendingOrder()
- {
- $test = new Api($this);
- $test->get('/posts?page=2,2&order=id,desc');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[11,1,1,"#7"],[10,1,1,"#6"]],"results":11}}');
- }
-
- public function testListWithPaginateLastPage()
- {
- $test = new Api($this);
- $test->get('/posts?page=3,5&order=id');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[14,1,1,"#10"]],"results":11}}');
- }
-
- public function testListExampleFromReadmeFullRecord()
- {
- $test = new Api($this);
- $test->get('/posts?filter=id,eq,1');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[1,1,1,"blog started"]]}}');
- }
-
- public function testListExampleFromReadmeWithExclude()
- {
- $test = new Api($this);
- $test->get('/posts?exclude=id&filter=id,eq,1');
- $test->expect('{"posts":{"columns":["user_id","category_id","content"],"records":[[1,1,"blog started"]]}}');
- }
-
- public function testListExampleFromReadme()
- {
- $test = new Api($this);
- $test->get('/posts?include=categories,tags,comments&filter=id,eq,1');
- $test->expect('{"posts":{"columns":["id","user_id","category_id","content"],"records":[[1,1,1,"blog started"]]},"post_tags":{"relations":{"post_id":"posts.id"},"columns":["id","post_id","tag_id"],"records":[[1,1,1],[2,1,2]]},"categories":{"relations":{"id":"posts.category_id"},"columns":["id","name","icon"],"records":[[1,"announcement",null]]},"tags":{"relations":{"id":"post_tags.tag_id"},"columns":["id","name"],"records":[[1,"funny"],[2,"important"]]},"comments":{"relations":{"post_id":"posts.id"},"columns":["id","post_id","message"],"records":[[1,1,"great"],[2,1,"fantastic"]]}}');
- }
-
- public function testListExampleFromReadmeWithTransform()
- {
- $test = new Api($this);
- $test->get('/posts?include=categories,tags,comments&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"id":1,"post_tags":[{"id":1,"post_id":1,"tag_id":1,"tags":[{"id":1,"name":"funny"}]},{"id":2,"post_id":1,"tag_id":2,"tags":[{"id":2,"name":"important"}]}],"comments":[{"id":1,"post_id":1,"message":"great"},{"id":2,"post_id":1,"message":"fantastic"}],"user_id":1,"category_id":1,"categories":[{"id":1,"name":"announcement","icon":null}],"content":"blog started"}]}');
- }
-
- public function testListExampleFromReadmeWithTransformWithExclude()
- {
- $test = new Api($this);
- $test->get('/posts?include=categories,tags,comments&exclude=comments.message&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"id":1,"post_tags":[{"id":1,"post_id":1,"tag_id":1,"tags":[{"id":1,"name":"funny"}]},{"id":2,"post_id":1,"tag_id":2,"tags":[{"id":2,"name":"important"}]}],"comments":[{"id":1,"post_id":1},{"id":2,"post_id":1}],"user_id":1,"category_id":1,"categories":[{"id":1,"name":"announcement","icon":null}],"content":"blog started"}]}');
- }
-
- public function testEditCategoryWithBinaryContent()
- {
- $binary = base64_encode("\0abc\0\n\r\b\0");
- $base64url = rtrim(strtr($binary, '+/', '-_'), '=');
- $test = new Api($this);
- $test->put('/categories/2', '{"icon":"'.$base64url.'"}');
- $test->expect('1');
- $test->get('/categories/2');
- $test->expect('{"id":2,"name":"article","icon":"'.$binary.'"}');
- }
-
- public function testEditCategoryWithNull()
- {
- $test = new Api($this);
- $test->put('/categories/2', '{"icon":null}');
- $test->expect('1');
- $test->get('/categories/2');
- $test->expect('{"id":2,"name":"article","icon":null}');
- }
-
- public function testEditCategoryWithBinaryContentWithPost()
- {
- $binary = base64_encode("€ \0abc\0\n\r\b\0");
- $base64url = rtrim(strtr($binary, '+/', '-_'), '=');
- $test = new Api($this);
- $test->put('/categories/2', 'icon='.$base64url);
- $test->expect('1');
- $test->get('/categories/2');
- $test->expect('{"id":2,"name":"article","icon":"'.$binary.'"}');
- }
-
- public function testListCategoriesWithBinaryContent()
- {
- $test = new Api($this);
- $test->get('/categories');
- $test->expect('{"categories":{"columns":["id","name","icon"],"records":[[1,"announcement",null],[2,"article","4oKsIABhYmMACg1cYgA="]]}}');
- }
-
- public function testEditCategoryWithNullWithPost()
- {
- $test = new Api($this);
- $test->put('/categories/2', 'icon__is_null');
- $test->expect('1');
- $test->get('/categories/2');
- $test->expect('{"id":2,"name":"article","icon":null}');
- }
-
- public function testAddPostFailure()
- {
- $test = new Api($this);
- $test->post('/posts', '{"user_id":"a","category_id":1,"content":"tests"}');
- $test->expect('null');
- }
-
- public function testOptionsRequest()
- {
- $test = new Api($this);
- $test->options('/posts/2');
- $test->expect('["Access-Control-Allow-Headers: Content-Type, X-XSRF-TOKEN","Access-Control-Allow-Methods: OPTIONS, GET, PUT, POST, DELETE, PATCH","Access-Control-Allow-Credentials: true","Access-Control-Max-Age: 1728000"]', false);
- }
-
- public function testHidingPasswordColumn()
- {
- $test = new Api($this);
- $test->get('/users?filter=id,eq,1&transform=1');
- $test->expect('{"users":[{"id":1,"username":"user1","location":null}]}');
- }
-
- public function testValidatorErrorMessage()
- {
- $test = new Api($this);
- $test->put('/posts/1', '{"category_id":"a"}');
- $test->expect(false, '{"category_id":"must be numeric"}');
- }
-
- public function testSanitizerToStripTags()
- {
- $test = new Api($this);
- $test->put('/categories/2', '{"name":"<script>alert();</script>"}');
- $test->expect('1');
- $test->get('/categories/2');
- $test->expect('{"id":2,"name":"alert();","icon":null}');
- }
-
- public function testErrorOnInvalidJson()
- {
- $test = new Api($this);
- $test->post('/posts', '{"}');
- $test->expect(false, 'Not found (input)');
- }
-
- public function testErrorOnDuplicatePrimaryKey()
- {
- $test = new Api($this);
- $test->post('/posts', '{"id":1,"user_id":1,"category_id":1,"content":"blog started (duplicate)"}');
- $test->expect('null');
- }
-
- public function testErrorOnFailingForeignKeyConstraint()
- {
- $test = new Api($this);
- $test->post('/posts', '{"user_id":3,"category_id":1,"content":"fk constraint"}');
- $test->expect('null');
- }
-
- public function testMissingIntermediateTable()
- {
- $test = new Api($this);
- $test->get('/users?include=posts,tags');
- $test->expect('{"users":{"columns":["id","username","location"],"records":[[1,"user1",null]]},"posts":{"relations":{"user_id":"users.id"},"columns":["id","user_id","category_id","content"],"records":[[1,1,1,"blog started"],[2,1,2,"\u20ac Hello world, \u039a\u03b1\u03bb\u03b7\u03bc\u1f73\u03c1\u03b1 \u03ba\u1f79\u03c3\u03bc\u03b5, \u30b3\u30f3\u30cb\u30c1\u30cf"],[5,1,1,"#1"],[6,1,1,"#2"],[7,1,1,"#3"],[8,1,1,"#4"],[9,1,1,"#5"],[10,1,1,"#6"],[11,1,1,"#7"],[12,1,1,"#8"],[14,1,1,"#10"]]},"post_tags":{"relations":{"post_id":"posts.id"},"columns":["id","post_id","tag_id"],"records":[[1,1,1],[2,1,2],[3,2,1],[4,2,2]]},"tags":{"relations":{"id":"post_tags.tag_id"},"columns":["id","name"],"records":[[1,"funny"],[2,"important"]]}}');
- }
-
- public function testEditUserPassword()
- {
- $test = new Api($this);
- $test->put('/users/1', '{"password":"testtest"}');
- $test->expect('1');
- }
-
- public function testEditUserLocation()
- {
- $test = new Api($this);
- $test->put('/users/1', '{"location":"POINT(30 20)"}');
- $test->expect('1');
- $test->get('/users/1?columns=id,location');
- if ($this->getEngineName()=='SQLServer') {
- $test->expect('{"id":1,"location":"POINT (30 20)"}');
- } else {
- $test->expect('{"id":1,"location":"POINT(30 20)"}');
- }
- }
-
- public function testListUserLocations()
- {
- $test = new Api($this);
- $test->get('/users?columns=id,location');
- if ($this->getEngineName()=='SQLServer') {
- $test->expect('{"users":{"columns":["id","location"],"records":[[1,"POINT (30 20)"]]}}');
- } else {
- $test->expect('{"users":{"columns":["id","location"],"records":[[1,"POINT(30 20)"]]}}');
- }
- }
-
- public function testEditUserWithId()
- {
- if ($this->getEngineName()!='SQLServer') {
- $test = new Api($this);
- $test->put('/users/1', '{"id":2,"password":"testtest2"}');
- $test->expect('1');
- $test->get('/users/1?columns=id,username,password');
- $test->expect('{"id":1,"username":"user1","password":"testtest2"}');
- }
- }
-
- public function testReadOtherUser()
- {
- $test = new Api($this);
- $test->get('/users/2');
- $test->expect(false, 'Not found (object)');
- }
-
- public function testEditOtherUser()
- {
- $test = new Api($this);
- $test->put('/users/2', '{"password":"testtest"}');
- $test->expect('0');
- }
-
- public function testFilterCategoryOnNullIcon()
- {
- $test = new Api($this);
- $test->get('/categories?filter[]=icon,is,null&transform=1');
- $test->expect('{"categories":[{"id":1,"name":"announcement","icon":null},{"id":2,"name":"alert();","icon":null}]}');
- }
-
- public function testFilterCategoryOnNotNullIcon()
- {
- $test = new Api($this);
- $test->get('/categories?filter[]=icon,nis,null&transform=1');
- $test->expect('{"categories":[]}');
- }
-
- public function testFilterPostsNotIn()
- {
- $test = new Api($this);
- $test->get('/posts?filter[]=id,nin,1,2,3,4,7,8,9,10,11,12,13,14&transform=1');
- $test->expect('{"posts":[{"id":5,"user_id":1,"category_id":1,"content":"#1"},{"id":6,"user_id":1,"category_id":1,"content":"#2"}]}');
- }
-
- public function testFilterPostsBetween()
- {
- $test = new Api($this);
- $test->get('/posts?filter[]=id,bt,5,6&transform=1');
- $test->expect('{"posts":[{"id":5,"user_id":1,"category_id":1,"content":"#1"},{"id":6,"user_id":1,"category_id":1,"content":"#2"}]}');
- }
-
- public function testFilterPostsNotBetween()
- {
- $test = new Api($this);
- $test->get('/posts?filter[]=id,nbt,2,13&transform=1');
- $test->expect('{"posts":[{"id":1,"user_id":1,"category_id":1,"content":"blog started"},{"id":14,"user_id":1,"category_id":1,"content":"#10"}]}');
- }
-
- public function testColumnsWithTable()
- {
- $test = new Api($this);
- $test->get('/posts?columns=posts.content&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"content":"blog started"}]}');
- }
-
- public function testColumnsWithTableWildcard()
- {
- $test = new Api($this);
- $test->get('/posts?columns=posts.*&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"id":1,"user_id":1,"category_id":1,"content":"blog started"}]}');
- }
-
- public function testColumnsOnInclude()
- {
- $test = new Api($this);
- $test->get('/posts?include=categories&columns=categories.name&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"category_id":1,"categories":[{"id":1,"name":"announcement"}]}]}');
- }
-
- public function testFilterOnRelationAnd()
- {
- $test = new Api($this);
- $test->get('/categories?include=posts&filter[]=id,ge,1&filter[]=id,le,1&filter[]=id,le,2&filter[]=posts.id,lt,8&filter[]=posts.id,gt,4');
- $test->expect('{"categories":{"columns":["id","name","icon"],"records":[[1,"announcement",null]]},"posts":{"relations":{"category_id":"categories.id"},"columns":["id","user_id","category_id","content"],"records":[[5,1,1,"#1"],[6,1,1,"#2"],[7,1,1,"#3"]]}}');
- }
-
- public function testFilterOnRelationOr()
- {
- $test = new Api($this);
- $test->get('/categories?include=posts&filter[]=id,ge,1&filter[]=id,le,1&filter[]=posts.id,eq,5&filter[]=posts.id,eq,6&filter[]=posts.id,eq,7&satisfy=all,posts.any');
- $test->expect('{"categories":{"columns":["id","name","icon"],"records":[[1,"announcement",null]]},"posts":{"relations":{"category_id":"categories.id"},"columns":["id","user_id","category_id","content"],"records":[[5,1,1,"#1"],[6,1,1,"#2"],[7,1,1,"#3"]]}}');
- }
-
- public function testColumnsOnWrongInclude()
- {
- $test = new Api($this);
- $test->get('/posts?include=categories&columns=categories&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"category_id":1,"categories":[{"id":1}]}]}');
- }
-
- public function testColumnsOnImplicitJoin()
- {
- $test = new Api($this);
- $test->get('/posts?include=tags&columns=posts.id,tags.name&filter=id,eq,1&transform=1');
- $test->expect('{"posts":[{"id":1,"post_tags":[{"post_id":1,"tag_id":1,"tags":[{"id":1,"name":"funny"}]},{"post_id":1,"tag_id":2,"tags":[{"id":2,"name":"important"}]}]}]}');
- }
-
- public function testSpatialFilterWithin()
- {
- if (static::$capabilities & self::GIS) {
- $test = new Api($this);
- $test->get('/users?columns=id,username&filter=location,swi,POINT(30 20)');
- $test->expect('{"users":{"columns":["id","username"],"records":[[1,"user1"]]}}');
- }
- }
-
- public function testAddPostsWithNonExistingCategory()
- {
- $test = new Api($this);
- $test->post('/posts', '[{"user_id":1,"category_id":1,"content":"tests"},{"user_id":1,"category_id":15,"content":"tests"}]');
- $test->expect('null');
- $test->get('/posts?columns=content&filter=content,eq,tests');
- $test->expect('{"posts":{"columns":["content"],"records":[]}}');
- }
-
- public function testAddPosts()
- {
- $test = new Api($this);
- $test->post('/posts', '[{"user_id":1,"category_id":1,"content":"tests"},{"user_id":1,"category_id":1,"content":"tests"}]');
- $test->expectAny();
- $test->get('/posts?columns=content&filter=content,eq,tests');
- $test->expect('{"posts":{"columns":["content"],"records":[["tests"],["tests"]]}}');
- }
-
- public function testListEvents()
- {
- $test = new Api($this);
- $test->get('/events?columns=datetime');
- $test->expect('{"events":{"columns":["datetime"],"records":[["2016-01-01 13:01:01"]]}}');
- }
-
- public function testIncrementEventVisitors()
- {
- $test = new Api($this);
- $test->patch('/events/1', '{"visitors":11}');
- $test->expect('1');
- $test->get('/events/1');
- $test->expect('{"id":1,"name":"Launch","datetime":"2016-01-01 13:01:01","visitors":11}');
- }
-
- public function testIncrementEventVisitorsWithZero()
- {
- $test = new Api($this);
- $test->patch('/events/1', '{"visitors":0}');
- $test->expect('1');
- $test->get('/events/1');
- $test->expect('{"id":1,"name":"Launch","datetime":"2016-01-01 13:01:01","visitors":11}');
- }
-
- public function testDecrementEventVisitors()
- {
- $test = new Api($this);
- $test->patch('/events/1', '{"visitors":-5}');
- $test->expect('1');
- $test->get('/events/1');
- $test->expect('{"id":1,"name":"Launch","datetime":"2016-01-01 13:01:01","visitors":6}');
- }
-
- public function testListTagUsage()
- {
- $test = new Api($this);
- $test->get('/tag_usage');
- $test->expect('{"tag_usage":{"columns":["name","count"],"records":[["funny",2],["important",2]]}}');
- }
-
- public function testUpdateMultipleTags()
- {
- $test = new Api($this);
- $test->get('/tags?transform=1');
- $test->expect('{"tags":[{"id":1,"name":"funny"},{"id":2,"name":"important"}]}');
- $test->put('/tags/1,2', '[{"name":"funny"},{"name":"important"}]');
- $test->expect('[1,1]');
- }
-
- public function testUpdateMultipleTagsTooManyIds()
- {
- $test = new Api($this);
- $test->put('/tags/1,2,3', '[{"name":"funny!!!"},{"name":"important"}]');
- $test->expect(false, 'Not found (subject)');
- $test->get('/tags?transform=1');
- $test->expect('{"tags":[{"id":1,"name":"funny"},{"id":2,"name":"important"}]}');
- }
-
- public function testUpdateMultipleTagsWithoutFields()
- {
- $test = new Api($this);
- $test->put('/tags/1,2', '[{"name":"funny!!!"},{}]');
- $test->expect('null');
- $test->get('/tags?transform=1');
- $test->expect('{"tags":[{"id":1,"name":"funny"},{"id":2,"name":"important"}]}');
- }
-
- public function testDeleteMultipleTags()
- {
- $test = new Api($this);
- $test->post('/tags', '[{"name":"extra"},{"name":"more"}]');
- $test->expect('[3,4]');
- $test->delete('/tags/3,4');
- $test->expect('[1,1]');
- $test->get('/tags?transform=1');
- $test->expect('{"tags":[{"id":1,"name":"funny"},{"id":2,"name":"important"}]}');
- }
-
- public function testListProducts()
- {
- $test = new Api($this);
- $test->get('/products?columns=id,name,price&transform=1');
- $test->expect('{"products":[{"id":1,"name":"Calculator","price":"23.01"}]}');
- }
-
- public function testListProductsProperties()
- {
- $test = new Api($this);
- $test->get('/products?columns=id,properties&transform=1');
- if (static::$capabilities & self::JSON) {
- $test->expect('{"products":[{"id":1,"properties":{"depth":false,"model":"TRX-120","width":100,"height":null}}]}');
- } else {
- $test->expect('{"products":[{"id":1,"properties":"{\"depth\":false,\"model\":\"TRX-120\",\"width\":100,\"height\":null}"}]}');
- }
- }
-
- public function testReadProductProperties()
- {
- $test = new Api($this);
- $test->get('/products/1?columns=id,properties');
- if (static::$capabilities & self::JSON) {
- $test->expect('{"id":1,"properties":{"depth":false,"model":"TRX-120","width":100,"height":null}}');
- } else {
- $test->expect('{"id":1,"properties":"{\"depth\":false,\"model\":\"TRX-120\",\"width\":100,\"height\":null}"}');
- }
- }
-
- public function testWriteProductProperties()
- {
- $test = new Api($this);
- if (static::$capabilities & self::JSON) {
- $test->put('/products/1', '{"properties":{"depth":false,"model":"TRX-120","width":100,"height":123}}');
- } else {
- $test->put('/products/1', '{"properties":"{\"depth\":false,\"model\":\"TRX-120\",\"width\":100,\"height\":123}"}');
- }
- $test->expect('1');
- $test->get('/products/1?columns=id,properties');
- if (static::$capabilities & self::JSON) {
- $test->expect('{"id":1,"properties":{"depth":false,"model":"TRX-120","width":100,"height":123}}');
- } else {
- $test->expect('{"id":1,"properties":"{\"depth\":false,\"model\":\"TRX-120\",\"width\":100,\"height\":123}"}');
- }
- }
-
- public function testAddProducts()
- {
- $test = new Api($this);
- if (static::$capabilities & self::JSON) {
- $test->post('/products', '{"name":"Laptop","price":"1299.99","properties":{}}');
- } else {
- $test->post('/products', '{"name":"Laptop","price":"1299.99","properties":"{}"}');
- }
- $test->expect('2');
- $test->get('/products/2?columns=id,created_at,deleted_at');
- $test->expect('{"id":2,"created_at":"2013-12-11 10:09:08","deleted_at":null}');
- }
-
- public function testSoftDeleteProducts()
- {
- $test = new Api($this);
- $test->delete('/products/1,2');
- $test->expect('[1,1]');
- $test->get('/products?columns=id,deleted_at');
- $test->expect('{"products":{"columns":["id","deleted_at"],"records":[[1,"2013-12-11 11:10:09"],[2,"2013-12-11 11:10:09"]]}}');
- }
-
- public function testVarBinaryBarcodes()
- {
- $test = new Api($this);
- $test->get('/barcodes?transform=1');
- $test->expect('{"barcodes":[{"id":1,"product_id":1,"hex":"00ff01","bin":"AP8B"}]}');
- }
- }
|