be($user); $this->call('GET', '/tags/create'); $this->assertResponseOk(); } public function testDelete() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('GET', '/tags/delete/' . $tag->id); $this->assertResponseOk(); } public function testDestroy() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('POST', '/tags/destroy/' . $tag->id, ['_token' => 'replaceMe']); $this->assertSessionHas('success'); $this->assertResponseStatus(302); } public function testEdit() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('GET', '/tags/edit/' . $tag->id); $this->assertResponseOk(); } public function testEditBalancingAct() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal'); $type = FactoryMuffin::create('FireflyIII\Models\TransactionType'); $type->type = 'Transfer'; $type->save(); $journal->transactionType()->associate($type); $journal->save(); $tag->transactionJournals()->save($journal); $tag->tagMode = 'balancingAct'; $tag->save(); $this->be($tag->user); $this->call('GET', '/tags/edit/' . $tag->id); $this->assertResponseOk(); } public function testEditThreeExpenses() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $type = FactoryMuffin::create('FireflyIII\Models\TransactionType'); $type->type = 'Withdrawal'; $type->save(); for ($i = 0; $i < 3; $i++) { $journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal'); $journal->transactionType()->associate($type); $journal->save(); $tag->transactionJournals()->save($journal); } $tag->tagMode = 'nothing'; $tag->save(); $this->be($tag->user); $this->call('GET', '/tags/edit/' . $tag->id); $this->assertResponseOk(); } public function testHideTagHelp() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('POST', '/tags/hideTagHelp/true', ['_token' => 'replaceMe']); $this->assertResponseOk(); } public function testIndex() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('GET', '/tags'); $this->assertResponseOk(); } public function testShow() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $this->call('GET', '/tags/show/' . $tag->id); $this->assertResponseOk(); } public function testStore() { $user = FactoryMuffin::create('FireflyIII\User'); $this->be($user); $data = [ '_token' => 'replaceMe', 'tag' => 'BlaBla' . rand(1, 1000), 'tagMode' => 'nothing' ]; $this->call('POST', '/tags/store/', $data); $this->assertResponseStatus(302); } public function testStoreWithLocation() { $user = FactoryMuffin::create('FireflyIII\User'); $this->be($user); $data = [ '_token' => 'replaceMe', 'tag' => 'BlaBla' . rand(1, 1000), 'tagMode' => 'nothing', 'latitude' => 12, 'longitude' => 13, 'zoomLevel' => 3, 'setTag' => 'true', 'create_another' => 1, ]; $this->call('POST', '/tags/store/', $data); $this->assertResponseStatus(302); } public function testUpdate() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $data = [ '_token' => 'replaceMe', 'tag' => 'BlaBla' . rand(1, 1000), 'tagMode' => 'nothing', 'id' => $tag->id, ]; $this->call('POST', '/tags/update/' . $tag->id, $data); $this->assertResponseStatus(302); } public function testUpdateWithLocation() { $tag = FactoryMuffin::create('FireflyIII\Models\Tag'); $this->be($tag->user); $data = [ '_token' => 'replaceMe', 'tag' => 'BlaBla' . rand(1, 1000), 'tagMode' => 'nothing', 'id' => $tag->id, 'latitude' => 12, 'setTag' => 'true', 'longitude' => 13, 'zoomLevel' => 3, 'return_to_edit' => 1, ]; $this->call('POST', '/tags/update/' . $tag->id, $data); $this->assertResponseStatus(302); } }