Your IP : 216.73.216.95


Current Path : /var/www/storage2/vendor/klarna/kco_rest/tests/Component/
Upload File :
Current File : /var/www/storage2/vendor/klarna/kco_rest/tests/Component/TestCase.php

<?php
/**
 * Copyright 2014 Klarna AB
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * File containing the TestCase class.
 */

namespace Klarna\Rest\Tests\Component;

use GuzzleHttp\Client;
use GuzzleHttp\Message\RequestInterface;
use GuzzleHttp\Subscriber\History;
use GuzzleHttp\Subscriber\Mock;
use Klarna\Rest\Transport\Connector;

/**
 * Base component test case class.
 */
class TestCase extends \PHPUnit_Framework_TestCase
{
    const MERCHANT_ID = '1234';

    const SHARED_SECRET = 'MySecret';

    const BASE_URL = 'http://base-url.internal.machines';

    const PATH = '/test/url';

    /**
     * @var Client
     */
    protected $client;

    /**
     * @var Connector
     */
    protected $connector;

    /**
     * @var Mock
     */
    protected $mock;

    /**
     * @var History
     */
    protected $history;

    /**
     * Sets up the test fixtures.
     */
    protected function setUp()
    {
        $this->client = new Client();
        $this->mock = new Mock();
        $this->history = new History();

        // Add the mock subscriber to the client.
        $this->client->getEmitter()->attach($this->mock);
        $this->client->getEmitter()->attach($this->history);

        $this->connector = new Connector(
            $this->client,
            self::MERCHANT_ID,
            self::SHARED_SECRET
        );
    }
}