第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 client-go 假客戶(hù)端模擬錯(cuò)誤

使用 client-go 假客戶(hù)端模擬錯(cuò)誤

Go
MMTTMM 2022-10-10 16:56:27
我正在使用 client-go(go 的 k8s 客戶(hù)端)以編程方式從集群中檢索和更新一些秘密。在這樣做時(shí),我面臨著對(duì)我的代碼進(jìn)行單元測(cè)試的需要,經(jīng)過(guò)一番調(diào)查,我偶然發(fā)現(xiàn)了 client-go 的fake客戶(hù)端。但是,我還不能模擬錯(cuò)誤。我已按照此問(wèn)題的說(shuō)明進(jìn)行操作,但沒(méi)有成功。這里有我的業(yè)務(wù)邏輯:func (g goClientRefresher) RefreshNamespace(ctx context.Context, namespace string) (err error, warnings bool) {    client := g.kubeClient.CoreV1().Secrets(namespace)    secrets, err := client.List(ctx, metav1.ListOptions{LabelSelector: "mutated-by=confidant"})    if err != nil {        return fmt.Errorf("unable to fetch secrets from cluster: %w", err), false    }    for _, secret := range secrets.Items {        // business logic here    }    return nil, warnings}和測(cè)試:func TestWhenItsNotPossibleToFetchTheSecrets_ThenAnErrorIsReturned(t *testing.T) {    kubeClient := getKubeClient()    kubeClient.CoreV1().(*fakecorev1.FakeCoreV1).        PrependReactor("list", "secret", func(action testingk8s.Action) (handled bool, ret runtime.Object, err error) {            return true, &v1.SecretList{}, errors.New("error listing secrets")        })    r := getRefresher(kubeClient)    err, warnings := r.RefreshNamespace(context.Background(), "target-ns")    require.Error(t, err, "an error should have been raised")}但是,當(dāng)我運(yùn)行測(cè)試時(shí)出現(xiàn)nil錯(cuò)誤。難道我做錯(cuò)了什么?
查看完整描述

1 回答

?
夢(mèng)里花落0921

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超6個(gè)贊

我終于找到了錯(cuò)誤......它在反應(yīng)堆函數(shù)的資源名稱(chēng)中,我有secret,它應(yīng)該是復(fù)數(shù)secrets......:facepalm:。所以這是代碼的正確版本:


func TestWhenItsNotPossibleToFetchTheSecrets_ThenAnErrorIsReturned(t *testing.T) {

    kubeClient := getKubeClient()

    kubeClient.CoreV1().(*fakecorev1.FakeCoreV1).

        PrependReactor("list", "secrets", func(action testingk8s.Action) (handled bool, ret runtime.Object, err error) {

            return true, &v1.SecretList{}, errors.New("error listing secrets")

        })

    // ...

}


查看完整回答
反對(duì) 回復(fù) 2022-10-10
  • 1 回答
  • 0 關(guān)注
  • 107 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)