summaryrefslogtreecommitdiffstats
path: root/integrations
Commit message (Collapse)AuthorAgeFilesLines
* API: support '/orgs/:org/repos' (#2047)Aaron Walker2017-07-131-0/+21
| | | * API: support '/orgs/:org/repos'
* Fix username rendering bug (#2122)Ethan Koenig2017-07-121-0/+37
| | | | | | | | * Fix username rendering bug * XSS integration test * Migration to unescape user full names
* Fix repo API bug (#2133)Ethan Koenig2017-07-123-0/+69
| | | Don't require token when not necessary
* Fix GET /users/:username/repos endpoint (#2125)Ethan Koenig2017-07-101-4/+33
|
* Cache session cookies in tests (#2128)Ethan Koenig2017-07-091-1/+8
|
* Remove unused files (#2124)Ethan Koenig2017-07-072-23/+0
|
* Less verbose integration tests (#2123)Ethan Koenig2017-07-0724-223/+122
| | | * Helper functions for intergration test boilerplate
* Fix API for branches with slashes (#2096)Ethan Koenig2017-07-022-0/+45
|
* Check for valid renamed usernames (#2077)Ethan Koenig2017-07-011-0/+99
| | | | | | | | | | * Check for valid renamed usernames * Integration test * Test for username with space * Make name field required
* Fix SQL bug in models.PullRequestsEthan Koenig2017-07-011-0/+31
|
* Fix release display and correct paging (#2080)Lauris BH2017-06-291-0/+93
|
* Integration tests for issues API (#2059)Ethan Koenig2017-06-251-0/+65
|
* Fix improper setup for integration tests (#2050)Ethan Koenig2017-06-251-4/+2
|
* Improve integration test helper functions (#2049)Ethan Koenig2017-06-2513-24/+9
| | | Set request headers in helper functions, and new helper for requests with string-formatted URLs
* Fix bug in issue labels API (#2048)Ethan Koenig2017-06-252-1/+67
|
* Make branch deletion URL more like GitHub's, fixes #1397 (#1994)Lauris BH2017-06-213-0/+103
| | | | | | | | | | | | * Make branch deletion URL more like GitHub's, fixes #1397 * Add PR branch deletion integration test * Do not allow deleting protected branch * Change http error code to 403 if user has no write rights to repository * Add check to not panic if forked repository has alrady been deleted
* Add integration test for repository migration (#1983)Mura Li2017-06-201-0/+70
|
* Add integration test for issue creating (#2002)Mura Li2017-06-181-0/+31
|
* Don't show non-comments in comments API (#2001)Ethan Koenig2017-06-184-10/+47
|
* Let not-logged-in users view releases (#1999)Ethan Koenig2017-06-181-0/+8
|
* fix golint error and rename func for suggestion. (#1997)Bo-Yi Wu2017-06-1711-25/+30
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Use testing benchmark interface (#1993)Antoine GIRARD2017-06-172-9/+9
|
* Consolidate boilerplate in integration tests (#1979)Ethan Koenig2017-06-1715-168/+147
|
* Set console to debug for integration testsEthan Koenig2017-06-153-7/+7
|
* Add integration test for pull-request merge (#1912)Mura Li2017-06-154-3/+62
|
* Fix typo (#1974)Shuanglei Tao2017-06-151-1/+1
|
* Add pull-create integration test (#1972)Mura Li2017-06-151-0/+56
|
* Fix search by issue type (#1914)Ethan Koenig2017-06-151-0/+50
| | | | * Fix search by issue type
* fix collborators lack of units on orgnization repositories (#1968)Lunny Xiao2017-06-1524-6/+567
| | | | | | * fix collborators lack of units on orgnization repositories * also change log level to debug
* Fix uppercase default branch bug (#1965)Ethan Koenig2017-06-143-0/+60
|
* Fix setting.AppPath for integration tests (#1923)Kim "BKC" Carlbäcker2017-06-131-4/+13
|\ | | | | Fix setting.AppPath for integration tests
| * Absolute path for setting.CustomConfEthan Koenig2017-06-091-5/+11
| |
| * Fix setting.AppPath for integration testsEthan Koenig2017-06-091-1/+4
| |
* | Display URLs in integration test logs (#1924)Ethan Koenig2017-06-0915-71/+47
|/
* Add integration test for file editing (#1907)Mura Li2017-06-081-0/+45
|
* Add integration test for repository forkingMura Li2017-06-071-0/+67
|
* Display draft releases (#1854)Ethan Koenig2017-06-031-0/+22
| | | | | | | | * Display draft releases * Include ctx.User in user cache * Integration test
* Fix pull request compare link (#1832)Ethan Koenig2017-05-311-0/+31
| | | | | | * Fix pull request compare link * Integration test
* Fix invalid reference in feeds template (#1820)Ethan Koenig2017-05-271-0/+9
| | | | | | | | * Fix invalid reference in feeds template * Comment for GetActAvatar * Add integration test
* Fix 500 for GET /teams/:id endpoints (#1811)Ethan Koenig2017-05-261-0/+38
| | | | | | | | * Fix 500 for GET /teams/:id endpoints * Integration test for GET /team/:id * Clean up integration test
* Fix activity feed (#1779)Ethan Koenig2017-05-261-10/+12
| | | | | | | | | | | | * Fix activity feed Preserve actions after user/repo name change * Add missing comment * Fix migration, and remove fields completely * Tests
* Fix and test for delete user (#1713)Ethan Koenig2017-05-201-0/+41
| | | | | | | | * Fix and test for delete user * Run updates in batches * Unit test
* Don't recreate database in integration tests (#1697)Ethan Koenig2017-05-111-6/+1
|
* remove sqlite tag when integration test with mysql/postgres AND recreate ↵Lunny Xiao2017-05-091-3/+9
| | | | database when init integration test (#1693)
* Add configuration option for default permission to create Organizations (#1686)Lauris BH2017-05-083-0/+3
|
* fix bug when push a branch name with / & fix an integration test bug (#1689)Lunny Xiao2017-05-082-5/+51
|
* Show commit status icon in commits table (#1688)Lauris BH2017-05-072-83/+101
| | | | | | | | | | | | | | | | | | * Show commit status icon in commits table * Add comments * Fix icons * Few more places where commit table is displayed * Change integration test to use goquery for parsing html * Add integration tests for commit table and status icons * Fix status to return lates status correctly on all databases * Rewrote lates commit status selects
* Do not allow commiting to protected branch from online editor (#1502)Lauris BH2017-05-023-2/+297
| | | | | | * Do not allow commiting to protected branch from online editor * Add editor integration tests for adding new file and not allowing to add new file to protected branch
* MySQL, Postgres integration tests in drone (#1638)Ethan Koenig2017-04-303-11/+49
| | | | | | | | | | * MySQL, Postgres integration tests in drone * Fix .drone.yml * sign drone * resign drone
* fix #1643 and improve integration test (#1645)Lunny Xiao2017-04-303-9/+30
|