blob: 937b6c1a985f844217beb02b5294dd6bf9acf16c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package client_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"context"
. "github.com/apache/servicecomb-kie/client"
"os"
)
var _ = Describe("Client", func() {
var c1 *Client
os.Setenv("HTTP_DEBUG", "1")
Describe("new client ", func() {
Context("with http protocol", func() {
var err error
c1, err = New(Config{
Endpoint: "http://127.0.0.1:30110",
})
It("should not return err", func() {
Expect(err).Should(BeNil())
})
It("should return client", func() {
Expect(c1).ShouldNot(BeNil())
})
})
})
Describe("get ", func() {
Context("only by key", func() {
_, err := c1.Get(context.TODO(), "app.properties")
It("should be 404 error", func() {
Expect(err).Should(Equal(ErrKeyNotExist))
})
})
Context("by key and labels", func() {
_, err := c1.Get(context.TODO(), "app.properties", WithLabels(map[string]string{
"app": "mall",
}))
It("should be 404 error", func() {
Expect(err).Should(Equal(ErrKeyNotExist))
})
})
})
})