diff --git a/behat.yml b/behat.yml new file mode 100755 index 0000000..f2357a0 --- /dev/null +++ b/behat.yml @@ -0,0 +1,9 @@ +default: + extensions: + Behat\MinkExtension: + base_url: http://127.0.0.1:8080 + goutte: ~ + suites: + features: + paths: [ %paths.base%/features ] + contexts: [ AmvContext ] \ No newline at end of file diff --git a/composer.json b/composer.json index 1bc71ce..3802ffe 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,15 @@ "zendframework/zendframework": "2.5.3", "doctrine/doctrine-orm-module": "^0.10", "doctrine/migrations": "^1.4", + "behat/behat": "~3.0", + "behat/mink": "^1.6", + "behat/mink-extension": "^2.0", + "behat/mink-goutte-driver": "^1.1", "robmorgan/phinx": "0.5.*" }, + "config": { + "bin-dir": "bin/" + }, "repositories":[ { "type": "composer", diff --git a/config/autoload/config.local.php.dist b/config/autoload/config.local.php.dist new file mode 100755 index 0000000..ea39bdf --- /dev/null +++ b/config/autoload/config.local.php.dist @@ -0,0 +1,10 @@ + [ + 1 => 'Français', + 2 => 'English', + 3 => 'Deutsch' + ], + 'defaultLanguageIndex' => 2 +]; diff --git a/features/amv.feature b/features/amv.feature new file mode 100755 index 0000000..a1194b2 --- /dev/null +++ b/features/amv.feature @@ -0,0 +1,65 @@ +@amvService +Feature: Amvs services + Test complies for amv service + +Scenario Outline: Test complies requirements + Given That I want to call the amv service + And I should test complies with Amode and Tmode and Vmode and Amodel and Tmodel and Vmodel and IsRegulator and the Result is + +Examples: + | a_mode | t_mode | v_mode | a_model | t_model | v_model | is_regulator | result | + | 0 | 0 | 0 | 1 | 1 | 1 | 0 | true | + | 0 | 0 | 0 | 1 | 1 | 1 | 1 | true | + | 0 | 0 | 0 | 1 | 1 | 2 | 0 | true | + | 0 | 0 | 0 | 1 | 1 | 2 | 1 | true | + | 0 | 0 | 0 | 1 | 2 | 3 | 0 | true | + | 0 | 0 | 0 | 1 | 2 | 3 | 1 | true | + + | 0 | 0 | 1 | 1 | 1 | 1 | 0 | false | + | 0 | 0 | 1 | 1 | 1 | 1 | 1 | false | + | 0 | 0 | 1 | 1 | 1 | 2 | 0 | false | + | 0 | 0 | 1 | 1 | 1 | 2 | 1 | false | + | 0 | 0 | 1 | 1 | 2 | 3 | 0 | false | + | 0 | 0 | 1 | 1 | 2 | 3 | 1 | false | + + | 0 | 1 | 0 | 1 | 1 | 1 | 0 | false | + | 0 | 1 | 0 | 1 | 1 | 1 | 1 | false | + | 0 | 1 | 0 | 1 | 1 | 2 | 0 | false | + | 0 | 1 | 0 | 1 | 1 | 2 | 1 | false | + | 0 | 1 | 0 | 1 | 2 | 3 | 0 | false | + | 0 | 1 | 0 | 1 | 2 | 3 | 1 | false | + + | 1 | 0 | 0 | 1 | 1 | 1 | 0 | true | + | 1 | 0 | 0 | 1 | 1 | 1 | 1 | false | + | 1 | 0 | 0 | 1 | 1 | 2 | 0 | true | + | 1 | 0 | 0 | 1 | 1 | 2 | 1 | false | + | 1 | 0 | 0 | 1 | 2 | 3 | 0 | true | + | 1 | 0 | 0 | 1 | 2 | 3 | 1 | false | + + | 1 | 1 | 0 | 1 | 1 | 1 | 0 | true | + | 1 | 1 | 0 | 1 | 1 | 1 | 1 | false | + | 1 | 1 | 0 | 1 | 1 | 2 | 0 | true | + | 1 | 1 | 0 | 1 | 1 | 2 | 1 | false | + | 1 | 1 | 0 | 1 | 2 | 3 | 0 | true | + | 1 | 1 | 0 | 1 | 2 | 3 | 1 | false | + + | 1 | 0 | 1 | 1 | 1 | 1 | 0 | true | + | 1 | 0 | 1 | 1 | 1 | 1 | 1 | false | + | 1 | 0 | 1 | 1 | 1 | 2 | 0 | true | + | 1 | 0 | 1 | 1 | 1 | 2 | 1 | false | + | 1 | 0 | 1 | 1 | 2 | 3 | 0 | true | + | 1 | 0 | 1 | 1 | 2 | 3 | 1 | false | + + | 0 | 1 | 1 | 1 | 1 | 1 | 0 | false | + | 0 | 1 | 1 | 1 | 1 | 1 | 1 | false | + | 0 | 1 | 1 | 1 | 1 | 2 | 0 | false | + | 0 | 1 | 1 | 1 | 1 | 2 | 1 | false | + | 0 | 1 | 1 | 1 | 2 | 3 | 0 | false | + | 0 | 1 | 1 | 1 | 2 | 3 | 1 | false | + + | 1 | 1 | 1 | 1 | 1 | 1 | 0 | true | + | 1 | 1 | 1 | 1 | 1 | 1 | 1 | true | + | 1 | 1 | 1 | 1 | 1 | 2 | 0 | false | + | 1 | 1 | 1 | 1 | 1 | 2 | 1 | false | + | 1 | 1 | 1 | 1 | 2 | 3 | 0 | false | + | 1 | 1 | 1 | 1 | 2 | 3 | 1 | false | diff --git a/features/bootstrap/AmvContext.php b/features/bootstrap/AmvContext.php new file mode 100644 index 0000000..581855f --- /dev/null +++ b/features/bootstrap/AmvContext.php @@ -0,0 +1,77 @@ +service = new \MonarcCore\Service\AmvService(); + } + + + /** + * @Given I should test complies with Amode :arg1 and Tmode :arg2 and Vmode :arg3 and Amodel :arg4 and Tmodel :arg5 and Vmodel :arg6 and IsRegulator :arg7 and the Result is true + */ + public function iShouldTestCompliesWithAmodeAndTmodeAndVmodeAndAmodelAndTmodelAndVmodelAndIsregulatorAndTheResultIsTrue($arg1, $arg2, $arg3, $arg4, $arg5, $arg6, $arg7) + { + $service = $this->service; + + $result = $service->compliesControl($arg1, $arg2, $arg3, $arg4, $arg5, $arg6, $arg7); + + PHPUnit_Framework_Assert::assertTrue($result); + } + + /** + * @Given I should test complies with Amode :arg1 and Tmode :arg2 and Vmode :arg3 and Amodel :arg4 and Tmodel :arg5 and Vmodel :arg6 and IsRegulator :arg7 and the Result is false + */ + public function iShouldTestCompliesWithAmodeAndTmodeAndVmodeAndAmodelAndTmodelAndVmodelAndIsregulatorAndTheResultIsFalse($arg1, $arg2, $arg3, $arg4, $arg5, $arg6, $arg7) + { + $service = $this->service; + + $result = $service->compliesControl($arg1, $arg2, $arg3, $arg4, $arg5, $arg6, $arg7); + + PHPUnit_Framework_Assert::assertFalse($result); + } + +}