mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2e95bb5f1a
Implemented a FakeStorage alternative that supports spinning up a remote container on DOCKER_TEST_HOST to serve files over an offline-compiled Go static web server image so that tests which use URLs in Dockerfile can build them over at the daemon side. `fakeStorage` function now automatically chooses if it should use a local httptest.Server or a remote container. This fixes the following tests when running against a remote daemon: - `TestBuildCacheADD` - `TestBuildCopyWildcardNoFind` - `TestBuildCopyWildcardCache` - `TestBuildADDRemoteFileWithCache` - `TestBuildADDRemoteFileWithoutCache` - `TestBuildADDRemoteFileMTime` - `TestBuildADDLocalAndRemoteFilesWithCache` - `TestBuildADDLocalAndRemoteFilesWithoutCache` - `TestBuildFromURLWithF` - `TestBuildApiDockerFileRemote` Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
15 lines
362 B
Bash
15 lines
362 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Build a Go static web server on top of busybox image
|
|
# and compile it for target daemon
|
|
|
|
dir="$DEST/httpserver"
|
|
mkdir -p "$dir"
|
|
(
|
|
cd "$dir"
|
|
GOOS=linux GOARCH=amd64 go build -o httpserver github.com/docker/docker/contrib/httpserver
|
|
cp ../../../../contrib/httpserver/Dockerfile .
|
|
docker build -qt httpserver . > /dev/null
|
|
)
|
|
rm -rf "$dir"
|