summaryrefslogtreecommitdiffstats
path: root/api4/apitestlib.go
Commit message (Collapse)AuthorAgeFilesLines
* Implement GET channels endpoints for APIv4 (#5363)Ruzette Tanyag2017-02-141-2/+2
| | | | | | | | | | | | * implement get channels endpoints and updated drivers and unittests * removed channel deletion on tear down, removed manage permission on get channels endpoints, and updated utils to add constant channel length * added constants for user, team and channel length, updated context to use the model functions * make sure team name length should be less than the minimum length and revert underscore to team name validity * changed post test condition from notfound to unauthorized
* Implement some post endpoints for APIv4 (#5353)Joram Wilander2017-02-131-0/+27
| | | | | | | | | | | | * Implement POST /posts endpoint for APIv4 * Implement GET /channels/{channel_id}/posts endpoint for APIv4 * Implement GET /posts/{post_id} endpoint for APIv4 * Implement GET /posts/{post_id}/thread endpoint for APIv4 * Skip team get if it's a DM channel in handlePostEvents
* Implement GET `/users/username/{username}` endpoint for APIv4 (#5310)Ruzette Tanyag2017-02-081-1/+1
| | | | | | | | | | | | * added get user by username endpoint * added get user by username unit test and driver * changed username length to 22 characters max * changed Params to UserName to Username * reorganized get user by username and get user by email formatting in model/client4
* Implement PUT /users/{user_id}/password endpoint for APIv4 (#5243)Joram Wilander2017-02-071-1/+5
|
* Implement GET /users endpoint for APIv4 (#5277)Joram Wilander2017-02-031-0/+2
|
* Add tear down to APIv4 tests (#5250)Joram Wilander2017-02-021-0/+28
| | | | | | * Add tear down to APIv4 tests * Defer tear downs
* Implement POST /channels endpoint for APIv4 (#5241)Joram Wilander2017-02-021-0/+30
|
* Implement PUT /users/{user_id}/roles endpoint for APIv4 (#5238)Joram Wilander2017-02-011-1/+15
|
* Improve APIv4 test lib (#5237)Joram Wilander2017-01-311-13/+97
|
* Implement APIv4 infrastructure (#5191)Joram Wilander2017-01-301-0/+211
* Implement APIv4 infrastructure * Update parameter requirement functions per feedback