blob: c06617e01d77b5679f909f755005983fdc411acf [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 admin_test
import (
"context"
"testing"
"github.com/apache/servicecomb-service-center/pkg/dump"
"github.com/apache/servicecomb-service-center/pkg/util"
adminsvc "github.com/apache/servicecomb-service-center/server/service/admin"
_ "github.com/apache/servicecomb-service-center/test"
beego "github.com/beego/beego/v2/server/web"
"github.com/go-chassis/cari/discovery"
"github.com/go-chassis/cari/pkg/errsvc"
"github.com/stretchr/testify/assert"
)
func init() {
beego.AppConfig.Set("registry_plugin", "etcd")
}
func TestAdminService_Dump(t *testing.T) {
t.Log("execute 'dump' operation,when get all,should be passed")
_, err := adminsvc.Dump(getContext(), &dump.Request{})
assert.NoError(t, err)
t.Log("execute 'dump' operation,when get by domain project,should be passed")
_, err = adminsvc.Dump(
util.SetDomainProject(context.Background(), "x", "x"),
&dump.Request{})
testErr := err.(*errsvc.Error)
assert.Error(t, testErr)
assert.Equal(t, discovery.ErrForbidden, testErr.Code)
}
func getContext() context.Context {
return util.WithNoCache(util.SetDomainProject(context.Background(), "default", "default"))
}