使用testcontainer时出现问题

时间:2019-01-02 14:14:08

标签: go testcontainers

我正在尝试页面https://github.com/testcontainers/testcontainer-go的示例

package main

import (
    "context"
    "fmt"
    "net/http"
    "testing"

    testcontainer "github.com/testcontainers/testcontainer-go"
)

func TestNginxLatestReturn(t *testing.T) {
    ctx := context.Background()
    req := testcontainer.ContainerRequest{
        Image:        "nginx",
        ExposedPorts: []string{"80/tcp"},
    }
...
}

但是当我将代码放在main.go下的文件<home>/go/src/my-sample中并调用go get时,我只会收到此错误:

 github.com/testcontainers/testcontainer-go
../github.com/testcontainers/testcontainer-go/docker.go:116:32: cannot use inspect.NetworkSettings.NetworkSettingsBase.Ports (type "github.com/docker/docker/vendor/github.com/docker/go-connections/nat".PortMap) as type "github.com/docker/go-connections/nat".PortMap in return argument
../github.com/testcontainers/testcontainer-go/docker.go:197:25: multiple-value uuid.NewV4() in single-value context
../github.com/testcontainers/testcontainer-go/docker.go:219:3: cannot use exposedPortSet (type map["github.com/docker/go-connections/nat".Port]struct {}) as type "github.com/docker/docker/vendor/github.com/docker/go-connections/nat".PortSet in field value
../github.com/testcontainers/testcontainer-go/docker.go:261:3: cannot use exposedPortMap (type map["github.com/docker/go-connections/nat".Port][]"github.com/docker/go-connections/nat".PortBinding) as type "github.com/docker/docker/vendor/github.com/docker/go-connections/nat".PortMap in field value

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

我也重现了该问题,但是我确实设法通过以下步骤来构建和运行测试:

  1. my_package树之外创建一个$GOPATH目录。
  2. 创建一个包含以下内容的mypackage_test.go文件:

    package main
    
    import (
        "testing"
    
        testcontainer "github.com/testcontainers/testcontainer-go"
    )
    
    func testNginxLatestReturn(t *testing.T) {
        req := testcontainer.ContainerRequest{
            Image:        "nginx",
            ExposedPorts: []string{"80/tcp"},
        }
        t.Log(req)
    }
    
  3. go mod init mypackage

  4. go test