[ 'allow_future_times' => false, ], 'mode' => 'duration_only', 'markdown_content' => false, 'active_entries' => [ 'hard_limit' => 99, 'soft_limit' => 15, ], ]; } protected function getDefaultLoaderSettings() { return [ (new Configuration())->setName('timesheet.rules.allow_future_times')->setValue('1'), (new Configuration())->setName('timesheet.mode')->setValue('default'), (new Configuration())->setName('timesheet.markdown_content')->setValue('1'), (new Configuration())->setName('timesheet.active_entries.hard_limit')->setValue('7'), (new Configuration())->setName('timesheet.active_entries.soft_limit')->setValue('3'), ]; } public function testPrefix() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertEquals('timesheet', $sut->getPrefix()); } public function testDefaultWithoutLoader() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertEquals(99, $sut->getActiveEntriesHardLimit()); $this->assertEquals(15, $sut->getActiveEntriesSoftLimit()); $this->assertEquals(false, $sut->isAllowFutureTimes()); $this->assertEquals(true, $sut->isDurationOnly()); $this->assertEquals(false, $sut->isMarkdownEnabled()); } public function testDefaultWithLoader() { $sut = $this->getSut($this->getDefaultSettings(), $this->getDefaultLoaderSettings()); $this->assertEquals(7, $sut->getActiveEntriesHardLimit()); $this->assertEquals(3, $sut->getActiveEntriesSoftLimit()); $this->assertEquals(true, $sut->isAllowFutureTimes()); $this->assertEquals(false, $sut->isDurationOnly()); $this->assertEquals(true, $sut->isMarkdownEnabled()); } public function testDefaultWithMixedConfigs() { $sut = $this->getSut($this->getDefaultSettings(), [ (new Configuration())->setName('timesheet.mode')->setValue('sdf'), ]); $this->assertEquals(false, $sut->isDurationOnly()); } public function testFindByKey() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertEquals(false, $sut->find('rules.allow_future_times')); $this->assertEquals(false, $sut->find('timesheet.rules.allow_future_times')); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage Unknown config: foo */ public function testUnknownConfigAreNotImportedAndFindingThemThrowsException() { $sut = $this->getSut($this->getDefaultSettings(), [ (new Configuration())->setName('timesheet.foo')->setValue('hello'), ]); $this->assertEquals('hello', $sut->find('foo')); } }