PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
authorizenet
/
authorizenet
/
tests
<?php class AuthorizeNetSSL_Test extends PHPUnit_Framework_TestCase { public function testSandboxSSLCertIsValid() { $this->markTestSkipped('Ignoring for Travis. Will fix after release.'); //TODO exec("echo | openssl s_client -connect test.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value); $this->assertEquals(0, $return_value); $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output))); exec("echo | openssl s_client -connect apitest.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value); $this->assertEquals(0, $return_value); $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output))); } public function testLiveSSLCertIsValid() { $this->markTestSkipped('Ignoring for Travis. Will fix after release.'); //TODO exec("echo | openssl s_client -connect secure2.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value); $this->assertEquals(0, $return_value); $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output))); exec("echo | openssl s_client -connect api2.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value); $this->assertEquals(0, $return_value); $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output))); } }
[-] AuthorizeNetTD_Test.php
[edit]
[-] Controller_Test.php
[edit]
[+]
net
[+]
..
[-] domain.crt
[edit]
[-] report.html
[edit]
[-] AuthorizeNetSSL_Test.php
[edit]
[-] bootstrap.php
[edit]