Skip to content
This repository has been archived by the owner on Oct 30, 2020. It is now read-only.

Commit

Permalink
Adds vault pre auth cvd test
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Paul committed Oct 23, 2016
1 parent 96aa2fd commit 38a2185
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/VaultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 38a2185

Please sign in to comment.