Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/HTTP/Test/Unit/Client/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/HTTP/Test/Unit/Client/CurlTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\Framework\HTTP\Test\Unit\Client;

use Magento\Framework\HTTP\Client\Curl;
use PHPUnit\Framework\TestCase;

/**
 * Test HTTP client based on cUrl.
 */
class CurlTest extends TestCase
{
    /**
     * Check that HTTP client can be used only for HTTP.
     */
    public function testInvalidProtocol()
    {
        $this->expectException('Exception');
        $this->expectExceptionMessageMatches('/Protocol .?telnet.? not supported or disabled in libcurl/');
        $client = new Curl();
        $client->get('telnet://127.0.0.1/test');
    }
}