0

我有一个 Go 应用程序和三个用于应用程序、数据库和 mountebank 的 docker 容器来模拟/存根 HTTP 响应。

我希望我的 mountebank 容器在 test_api(应用程序容器)发出请求时返回适当的响应。

当我使用 Postman 调用端点时,mountebank 容器会返回正确的响应。

但是,当我在 test_api 容器中的代码像下面的代码一样发送 GET 请求时,它总是会收到

拨打 tcp 127.0.0.1:3000:连接:连接被拒绝

下面是 test_api 如何向 mountebank 容器发送请求

func getSuper(id string) (*float64, error) {
    var url = "http://localhost:3000/ato/employee/?/balance"
    url = strings.Replace(url, "?", id, 1)
    log.Println("Sending request to this url: ", url)
    resp, err := http.Get(url)
    if err != nil {
        return nil, &errorhandling.RequestError{Context: "getSuper calling ato api", Code: errorhandling.Internal, Message: err.Error()}
    }
    body, err := resposeToByte(resp)
    if err != nil {
        log.Println("err in coverting response to byte[]:", err)
        return nil, &errorhandling.RequestError{Context: "getsuper resposeToByte", Code: errorhandling.Internal, Message: err.Error()}
    }
    superData, err := UnmarshalSuperDetails(body)
    if err != nil {
        return nil, &errorhandling.RequestError{Context: "UnmarshalSuperDetails())", Code: errorhandling.Internal, Message: err.Error()}
    }
    log.Println("super details ", superData)

    return &superData.SuperBalance, nil
}

这是我的 docker-compose

version: '3.7'

services:
  db:
    container_name: "test_db"
    platform: linux/x86_64
    build:
      context: .
      dockerfile: db.Dockerfile
    networks:
      - default
    restart: always
    ports:
      # <Port exposed> : < MySQL Port running inside container>
      - "3306:3306"
    # setting some env vars to create the DB
    environment:
      MYSQL_RANDOM_ROOT_PASSWORD: "secret"
      MYSQL_DATABASE: "IGD"
      MYSQL_USER: "tester"
      MYSQL_PASSWORD: "secret"
      # OR if you want to use "root" as the user, just these two lines
      # MYSQL_ROOT_PASSWORD: ${DATABASE_PASSWORD}
      # MYSQL_DATABASE: ${DATABASE_NAME}

    # we mount a data volume to make sure we don't lose data
    volumes:
      - mysql_data:/var/lib/mysql
    command: --default-authentication-plugin=mysql_native_password
  api:
    container_name:  "test_api"
    # we want to use the image which is build from our Dockerfile
    build:
      context: .
      dockerfile: api.Dockerfile
    ports:
      - "8080:8080"
    # we are depending on the mysql backend
    depends_on:
      - db
    # We mount the working dir into the container, handy for development
    # This is what makes the hot reloading work inside of a Docker container
    volumes:
      - .:/app/  
  mountebank:
    container_name: mountebank
    image: jkris/mountebank:latest
    build:
      context: .
      dockerfile: mb.Dockerfile
    volumes:
    - ./imposters:/imposters
    ports:
    - 2525:2525
    - 3000:3000
    #- 8090:8090
    command: --configfile /imposters/imposter.json --allowInjection
    networks:
      - default
networks:
  default:
volumes:
  mysql_data:


我的冒名顶替者:

 { "port": 3000,
  "protocol": "http",
  "stubs": [
    {
      "predicates": [
        {
          "equals": {"path":"/ato/employee/a/balance"}
        }
      ],
      "responses": [
        {
          "is": {
            "statusCode": 404,
            "headers": {
              "Content-Type": "application/json"
            },
            "body": {"error": "value not available"}
          }
        }
      ]
    },
    {
      "predicates": [
        {
          "equals": {"path":"/ato/employee/58957fc7-4e24-44e5-9eb1-a7fa0297613b/balance"}
        }
      ],
      "responses": [
        {
          "is": {
            "statusCode": 200,
            "headers": {
              "Content-Type": "application/json"
            },
            "body": { "employeeId":"50ccf5d6-2056-4e0c-a160-4e51638410c7",
                      "superBalance":1050.0}
          }
        },
continues...

这是我用于 mountebank 的 docker 文件

FROM alpine:3.14

ENV MOUNTEBANK_VERSION=2.4.0

RUN apk add --update nodejs-lts && \
    apk add --update npm
RUN npm install -g mountebank@${MOUNTEBANK_VERSION} --production

EXPOSE 2525
ENTRYPOINT ["mb"]
CMD ["start"]

如何更改我的代码以使 test_api 收到来自 mountebank 的正确响应?

4

1 回答 1

1

您应该在 test_api 中更改以下行;

var url = "http://localhost:3000/ato/employee/?/balance"

与以下一个;

var url = "http://mountebank:3000/ato/employee/?/balance"

由于这些是不同的容器,您应该在 Docker 环境中指定它们的名称或 IP。您的 test_api 请求其 localhost 并且没有 3000 的开放端口,您将收到连接被拒绝错误。您可以查看Docker Networking以获取更多信息。

于 2021-11-08T13:05:45.803 回答