文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

启动 clickhouse 容器的 testcontainers 使用方法

2024-04-04 23:12

关注

编程网今天将给大家带来《启动 clickhouse 容器的 testcontainers 使用方法》,感兴趣的朋友请继续看下去吧!以下内容将会涉及到等等知识点,如果你是正在学习Golang或者已经是大佬级别了,都非常欢迎也希望大家都能给我建议评论哈~希望能帮助到大家!

问题内容

我想使用 testcontainers 进行集成测试。我需要针对 clickhouse 存储进行测试。

docker 镜像是 yandex/clichouse-server

到目前为止我的代码(主要从 testcontainers 网站上的官方 redis 示例导入):

ctx := context.Background()
    req := testcontainers.ContainerRequest{
        Image: "yandex/clickhouse-server",
        ExposedPorts: []string{"9000/tcp"},
    }
    chContainer, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
        ContainerRequest: req,
        Started:          true,
    })
    require.NoError(t, err, "unexpected error while creating clickhouse container")

    endpoint, err := chContainer.Endpoint(ctx, "")
    require.NoError(t, err)

这会在获取端点时引发错误 port not found,并且我不确定从那里去哪里。


正确答案


您是否尝试过在 testcontainers go 中使用等待 api? https://github.com/testcontainers/testcontainers-go/tree/main/wait

有了它们,您将能够等待多件事(甚至是同时等待):

您可以在存储库中找到有用的示例。即日志条目的示例:

ctx := context.background()
    req := containerrequest{
        image:        "docker.io/mysql:latest",
        exposedports: []string{"3306/tcp", "33060/tcp"},
        env: map[string]string{
            "mysql_root_password": "password",
            "mysql_database":      "database",
        },
        waitingfor: wait.forlog("test context timeout").withstartuptimeout(1 * time.second),
    }
    _, err := genericcontainer(ctx, genericcontainerrequest{
        providertype:     providertype,
        containerrequest: req,
        started:          true,
    })

编辑:一个更详细的示例,包括使用 http 请求的等待策略:

const (
        dbname       = "crazy"
        fakeuser     = "jondoe"
        fakepassword = "bond girl"
    )

    ctx := context.background()

    req := containerrequest{
        image: "clickhouse/clickhouse-server",
        env: map[string]string{
            "clickhouse_db":       dbname,
            "clickhouse_user":     fakeuser,
            "clickhouse_password": fakepassword,
        },
        exposedports: []string{
            "8123/tcp",
            "9000/tcp",
        },
        waitingfor: wait.forall(
            wait.forhttp("/ping").withport("8123/tcp").withstatuscodematcher(
                func(status int) bool {
                    return status == http.statusok
                },
            ),
        ),
    }

    clickhousecontainer, err := genericcontainer(ctx, genericcontainerrequest{
        containerrequest: req,
        started:          true,
    })
    if err != nil {
        t.fatal(err)
    }

    defer clickhousecontainer.terminate(ctx)

仅供参考,从 v0.23.0 开始,有一个用于 testcontainers-go 的 clickhouse 模块:https://golang.testcontainers.org/modules/clickhouse/

您可以通过非常简单的方式使用它:

添加依赖项:

go get github.com/testcontainers/testcontainers-go/modules/clickhouse

导入:

import "github.com/testcontainers/testcontainers-go/modules/clickhouse"

代码:

ctx := context.Background()

user := "clickhouse"
password := "password"
dbname := "testdb"

clickHouseContainer, err := clickhouse.RunContainer(ctx,
    testcontainers.WithImage("clickhouse/clickhouse-server:23.3.8.21-alpine"),
    clickhouse.WithUsername(user),
    clickhouse.WithPassword(password),
    clickhouse.WithDatabase(dbname),
    clickhouse.WithInitScripts(filepath.Join("testdata", "init-db.sh")),
    clickhouse.WithConfigFile(filepath.Join("testdata", "config.xml")),
)
if err != nil {
    panic(err)
}
defer func() {
    if err := clickHouseContainer.Terminate(ctx); err != nil {
        panic(err)
    }
}()

本篇关于《启动 clickhouse 容器的 testcontainers 使用方法》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注编程网公众号!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯