From c9f46e2e3caa20d597315cd2fa85b0cce15c4c3b Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 6 Nov 2014 10:17:47 +0100 Subject: run integration tests on travis --- tests/integration/bootstrap.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'tests/integration/bootstrap.php') diff --git a/tests/integration/bootstrap.php b/tests/integration/bootstrap.php index b9bbe6179..0f010b8f4 100644 --- a/tests/integration/bootstrap.php +++ b/tests/integration/bootstrap.php @@ -9,7 +9,7 @@ class NewsIntegrationTest extends \PHPUnit_Framework_TestCase { protected $userId = 'test'; protected $userPassword = 'test'; - protected function setupNewsDatabase($user='test') { + protected function clearNewsDatabase($user='test') { $sql = [ 'DELETE FROM *PREFIX*news_items WHERE feed_id IN ' . '(SELECT id FROM *PREFIX*news_feeds WHERE user_id = ?)', @@ -29,6 +29,7 @@ class NewsIntegrationTest extends \PHPUnit_Framework_TestCase { if ($userManager->userExists($user)) { $userManager->get($user)->delete(); + $userManager->delete($user); } $userManager->createUser($user, $password); @@ -38,9 +39,13 @@ class NewsIntegrationTest extends \PHPUnit_Framework_TestCase { } - protected function setUpOwnCloud($user='test', $password='test') { - $this->setupUser($user, $password); - $this->setupNewsDatabase($user); + protected function setUp() { + $this->setupUser($this->userId, $this->userPassword); + } + + + protected function tearDown() { + $this->clearNewsDatabase($this->userId); } -- cgit v1.2.3