Basho\Tests\SecurityFeaturesTest::testPasswordAuth PHP Method

testPasswordAuth() public method

public testPasswordAuth ( )
    public function testPasswordAuth()
    {
        $nodes = [(new Riak\Node\Builder())->atHost(static::getTestHost())->onPort(static::getTestSecurePort())->usingPasswordAuthentication('riakpass', 'Test1234')->withCertificateAuthorityFile(getcwd() . '/tools/test-ca/certs/cacert.pem')->build()];
        $riak = new Riak($nodes);
        // build an object
        $command = (new Command\Builder\StoreObject($riak))->buildObject('some_data')->buildBucket('users')->build();
        $response = $command->execute();
        // expects 201 - Created
        $this->assertEquals('201', $response->getCode(), $response->getMessage());
        $this->assertNotEmpty($response->getLocation());
        $this->assertInstanceOf('\\Basho\\Riak\\Location', $response->getLocation());
    }