diff --git a/tests/VaultTest.php b/tests/VaultTest.php index 4796783..c195f5b 100644 --- a/tests/VaultTest.php +++ b/tests/VaultTest.php @@ -258,4 +258,26 @@ public function it_can_pre_authorize_a_credit_card_stored_in_the_moneris_vault() $this->assertEquals($key, $receipt->DataKey); $this->assertEquals('true', $receipt->Complete); } + + /** @test */ + public function it_can_submit_a_cvd_secured_pre_authorization_request_for_a_credit_card_stored_in_the_moneris_vault() + { + $params = ['environment' => Moneris::ENV_TESTING, 'cvd' => true]; + $vault = Moneris::create($this->id, $this->token, $params)->cards(); + + $response = $this->vault->add($this->card); + $key = $response->receipt()->DataKey; + + $params = array_merge($this->params, [ + 'data_key' => $key, + 'cvd' => '111', + ]); + + $response = $vault->preauth($params); + $receipt = $response->receipt(); + + $this->assertTrue($response->successful); + $this->assertEquals($key, $receipt->DataKey); + $this->assertEquals('true', $receipt->Complete); + } } \ No newline at end of file