. */ declare(strict_types=1); namespace Tests\Feature\Controllers\Rule; use FireflyIII\Models\RuleGroup; use FireflyIII\Repositories\Rule\RuleRepositoryInterface; use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface; use FireflyIII\Repositories\User\UserRepositoryInterface; use Illuminate\Support\Collection; use Log; use Mockery; use Tests\TestCase; /** * Class IndexControllerTest * * @SuppressWarnings(PHPMD.TooManyPublicMethods) * @SuppressWarnings(PHPMD.ExcessiveMethodLength) * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class IndexControllerTest extends TestCase { /** * */ public function setUp(): void { parent::setUp(); Log::info(sprintf('Now in %s.', get_class($this))); } /** * @covers \FireflyIII\Http\Controllers\Rule\IndexController */ public function testDown(): void { // mock stuff $repository = $this->mock(RuleRepositoryInterface::class); $ruleGroupRepos = $this->mock(RuleGroupRepositoryInterface::class); $userRepos = $this->mock(UserRepositoryInterface::class); $repository->shouldReceive('moveDown'); $this->mockDefaultSession(); $this->be($this->user()); $response = $this->get(route('rules.down', [1])); $response->assertStatus(302); $response->assertRedirect(route('rules.index')); } /** * @covers \FireflyIII\Http\Controllers\Rule\IndexController */ public function testIndex(): void { // mock stuff $repository = $this->mock(RuleRepositoryInterface::class); $ruleGroupRepos = $this->mock(RuleGroupRepositoryInterface::class); $userRepos = $this->mock(UserRepositoryInterface::class); $this->mockDefaultSession(); $this->mockIntroPreference('shown_demo_rules_index'); $userRepos->shouldReceive('hasRole')->withArgs([Mockery::any(), 'owner'])->atLeast()->once()->andReturn(true); $ruleGroupRepos->shouldReceive('count')->andReturn(0); $ruleGroupRepos->shouldReceive('store'); $repository->shouldReceive('getFirstRuleGroup')->andReturn(new RuleGroup); $ruleGroupRepos->shouldReceive('getRuleGroupsWithRules')->andReturn(new Collection); $repository->shouldReceive('count')->andReturn(0); $repository->shouldReceive('store'); $this->be($this->user()); $response = $this->get(route('rules.index')); $response->assertStatus(200); $response->assertSee('