我使用 Guzzle 編寫了一些整合測試。 我還在 bitbucket 上建立了一個運行測試的管道。
$this->client = new Client([ 'base_uri' => "http://{docker_service_name}/api/", ]); $response = $this->client->request('GET', 'regions'); $this->assertEquals(SELF::STATUS_OK, $response->getStatusCode());
我的 bitbucket-pipeline.yaml 看起來與此類似:
image: php:7.1.1 pipelines: default: - step: script: - apt-get update && apt-get install -y unzip - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - composer install - vendor/bin/phpunit
問題是管道因以下錯誤而失敗:
GuzzleHttp\Exception\ConnectException: cURL error 7: Failed to connect to docker_service_name port 80: Connection refused (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for http://{docker_service_name}/api/regions
看起來管道無法取得主機名,在我的本地它將是 docker web 伺服器的名稱,我應該在管道上設定什麼? 非常感謝提前
P粉5672810152024-02-18 11:09:02
請注意,步驟腳本是在單一 docker 容器中執行的。如果您需要連接到其他一些服務來執行整合測試,您應該: