From 15793496e8d56769c792cf39673c6e6dea3ec4d9 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 28 Jun 2018 21:15:57 +0200 Subject: Preparing for complete rewrite.. --- main/app/tests/DatabaseTransactions.php | 48 ------- main/app/tests/TestCase.php | 236 -------------------------------- main/app/tests/Unit/ExampleTest.php | 19 --- 3 files changed, 303 deletions(-) delete mode 100644 main/app/tests/DatabaseTransactions.php delete mode 100644 main/app/tests/TestCase.php delete mode 100644 main/app/tests/Unit/ExampleTest.php (limited to 'main/app/tests') diff --git a/main/app/tests/DatabaseTransactions.php b/main/app/tests/DatabaseTransactions.php deleted file mode 100644 index 2155c6a..0000000 --- a/main/app/tests/DatabaseTransactions.php +++ /dev/null @@ -1,48 +0,0 @@ -ci['db']; - - foreach ($this->connectionsToTransact() as $name) { - $database->connection($name)->beginTransaction(); - } - - $this->beforeApplicationDestroyed(function () use ($database) { - foreach ($this->connectionsToTransact() as $name) { - $database->connection($name)->rollBack(); - } - }); - } - - /** - * The database connections that should have transactions. - * - * @return array - */ - protected function connectionsToTransact() - { - return property_exists($this, 'connectionsToTransact') - ? $this->connectionsToTransact : [null]; - } -} \ No newline at end of file diff --git a/main/app/tests/TestCase.php b/main/app/tests/TestCase.php deleted file mode 100644 index 32dce56..0000000 --- a/main/app/tests/TestCase.php +++ /dev/null @@ -1,236 +0,0 @@ -app) { - $this->refreshApplication(); - } - - $this->setUpTraits(); - - foreach ($this->afterApplicationCreatedCallbacks as $callback) { - call_user_func($callback); - } - - $this->setUpHasRun = true; - } - - /** - * Boot the testing helper traits. - * - * @return void - */ - protected function setUpTraits() - { - $uses = array_flip(class_uses_recursive(static::class)); - - /*if (isset($uses[DatabaseMigrations::class])) { - $this->runDatabaseMigrations(); - }*/ - - if (isset($uses[DatabaseTransactions::class])) { - $this->beginDatabaseTransaction(); - } - } - - /** - * Refresh the application instance. - * - * @return void - */ - protected function refreshApplication() - { - // Force setting UF_MODE. This is needed at the moment because Bakery - // uses passthru to invoke PHPUnit. This means that the value of UF_MODE - // has already been set when Bakery was set up, and PHPUnit < 6.3 has - // no way to override environment vars that have already been set. - putenv('UF_MODE=testing'); - - // Setup the sprinkles - $uf = new UserFrosting(); - - // Set argument as false, we are using the CLI - $uf->setupSprinkles(false); - - // Get the container - $this->ci = $uf->getContainer(); - - // Next, we'll instantiate the application. Note that the application is required for the SprinkleManager to set up routes. - $this->app = new App($this->ci); - } - - /** - * Clean up the testing environment before the next test. - * - * @return void - */ - protected function tearDown() - { - if ($this->app) { - foreach ($this->beforeApplicationDestroyedCallbacks as $callback) { - call_user_func($callback); - } - - $this->app = null; - $this->ci = null; - } - - $this->setUpHasRun = false; - - $this->afterApplicationCreatedCallbacks = []; - $this->beforeApplicationDestroyedCallbacks = []; - } - - /** - * Register a callback to be run after the application is created. - * - * @param callable $callback - * @return void - */ - public function afterApplicationCreated(callable $callback) - { - $this->afterApplicationCreatedCallbacks[] = $callback; - - if ($this->setUpHasRun) { - call_user_func($callback); - } - } - - /** - * Asserts that collections are equivalent. - * - * @param array $expected - * @param array $actual - * @param string $message - * @throws PHPUnit_Framework_AssertionFailedError - */ - public static function assertCollectionsSame($expected, $actual, $key = 'id', $message = '') - { - // Check that they have the same number of items - static::assertEquals(count($expected), count($actual)); - - // Sort by primary key - $expected = collect($expected)->sortBy($key); - $actual = collect($actual)->sortBy($key); - - // Check that the keys match - $expectedKeys = $expected->keys()->all(); - $actualKeys = $actual->keys()->all(); - static::assertEquals(sort($expectedKeys), sort($actualKeys)); - - // Check that the array representations of each collection item match - $expected = $expected->values(); - $actual = $actual->values(); - for ($i = 0; $i < count($expected); $i++) { - static::assertEquals( - static::castToComparable($expected[$i]), - static::castToComparable($actual[$i]) - ); - } - } - - /** - * Register a callback to be run before the application is destroyed. - * - * @param callable $callback - * @return void - */ - protected function beforeApplicationDestroyed(callable $callback) - { - $this->beforeApplicationDestroyedCallbacks[] = $callback; - } - - /** - * Helpers - */ - - /** - * Cast an item to an array if it has a toArray() method. - * - * @param $item Collection|mixed[]|mixed - * @return mixed|mixed[] - */ - protected static function castToComparable($item) - { - return (is_object($item) && method_exists($item, 'toArray')) ? $item->toArray() : $item; - } - - /** - * Remove all relations on a collection of models. - */ - protected static function ignoreRelations($models) - { - foreach ($models as $model) { - $model->setRelations([]); - } - } - - protected function cloneObjectArray($original) - { - $cloned = []; - - foreach ($original as $k => $v) { - $cloned[$k] = clone $v; - } - - return $cloned; - } -} \ No newline at end of file diff --git a/main/app/tests/Unit/ExampleTest.php b/main/app/tests/Unit/ExampleTest.php deleted file mode 100644 index 1a2dc40..0000000 --- a/main/app/tests/Unit/ExampleTest.php +++ /dev/null @@ -1,19 +0,0 @@ -assertTrue(true); - } -} \ No newline at end of file -- cgit v1.2.3