Skip to content
Snippets Groups Projects
Select Git revision
  • 7cc765a67d8e04ef7d772425ca5a2a1e2b894c15
  • openEuler-1.0-LTS default protected
  • openEuler-22.09
  • OLK-5.10
  • openEuler-22.03-LTS
  • openEuler-22.03-LTS-Ascend
  • master
  • openEuler-22.03-LTS-LoongArch-NW
  • openEuler-22.09-HCK
  • openEuler-20.03-LTS-SP3
  • openEuler-21.09
  • openEuler-21.03
  • openEuler-20.09
  • 4.19.90-2210.5.0
  • 5.10.0-123.0.0
  • 5.10.0-60.63.0
  • 5.10.0-60.62.0
  • 4.19.90-2210.4.0
  • 5.10.0-121.0.0
  • 5.10.0-60.61.0
  • 4.19.90-2210.3.0
  • 5.10.0-60.60.0
  • 5.10.0-120.0.0
  • 5.10.0-60.59.0
  • 5.10.0-119.0.0
  • 4.19.90-2210.2.0
  • 4.19.90-2210.1.0
  • 5.10.0-118.0.0
  • 5.10.0-106.19.0
  • 5.10.0-60.58.0
  • 4.19.90-2209.6.0
  • 5.10.0-106.18.0
  • 5.10.0-106.17.0
33 results

bugs.c

Blame
  • protocol_test.go 8.85 KiB
    /*
     * 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 protocol
    
    import (
    	"testing"
    	"time"
    )
    
    import (
    	"github.com/stretchr/testify/assert"
    )
    
    import (
    	cluster "github.com/apache/dubbo-go/cluster/cluster_impl"
    	"github.com/apache/dubbo-go/common"
    	common_cfg "github.com/apache/dubbo-go/common/config"
    	"github.com/apache/dubbo-go/common/constant"
    	"github.com/apache/dubbo-go/common/extension"
    	"github.com/apache/dubbo-go/config"
    	"github.com/apache/dubbo-go/config_center"
    	"github.com/apache/dubbo-go/config_center/configurator"
    	"github.com/apache/dubbo-go/protocol"
    	"github.com/apache/dubbo-go/protocol/protocolwrapper"
    	"github.com/apache/dubbo-go/registry"
    	"github.com/apache/dubbo-go/remoting"
    )
    
    func init() {
    	config.SetProviderConfig(config.ProviderConfig{ApplicationConfig: &config.ApplicationConfig{Name: "test-application"}})
    }
    
    func referNormal(t *testing.T, regProtocol *registryProtocol) {
    	extension.SetProtocol("registry", GetProtocol)
    	extension.SetRegistry("mock", registry.NewMockRegistry)
    	extension.SetProtocol(protocolwrapper.FILTER, protocolwrapper.NewMockProtocolFilter)
    	extension.SetCluster("mock", cluster.NewMockCluster)
    
    	url, _ := common.NewURL("mock://127.0.0.1:1111")
    	suburl, _ := common.NewURL(
    		"dubbo://127.0.0.1:20000//",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    	)
    
    	url.SubURL = &suburl
    
    	invoker := regProtocol.Refer(url)
    	assert.IsType(t, &protocol.BaseInvoker{}, invoker)
    	assert.Equal(t, invoker.GetUrl().String(), url.String())
    }
    
    func TestRefer(t *testing.T) {
    	config.SetConsumerConfig(
    		config.ConsumerConfig{
    			ApplicationConfig: &config.ApplicationConfig{Name: "test-application"}})
    	regProtocol := newRegistryProtocol()
    	referNormal(t, regProtocol)
    }
    
    func TestMultiRegRefer(t *testing.T) {
    	regProtocol := newRegistryProtocol()
    	referNormal(t, regProtocol)
    	url2, _ := common.NewURL("mock://127.0.0.1:2222")
    	suburl2, _ := common.NewURL(
    		"dubbo://127.0.0.1:20000//",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    	)
    
    	url2.SubURL = &suburl2
    
    	regProtocol.Refer(url2)
    	var count int
    	regProtocol.registries.Range(func(key, value interface{}) bool {
    		count++
    		return true
    	})
    	assert.Equal(t, count, 2)
    }
    
    func TestOneRegRefer(t *testing.T) {
    	regProtocol := newRegistryProtocol()
    	referNormal(t, regProtocol)
    
    	url2, _ := common.NewURL("mock://127.0.0.1:1111")
    	suburl2, _ := common.NewURL(
    		"dubbo://127.0.0.1:20000//",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    	)
    
    	url2.SubURL = &suburl2
    
    	regProtocol.Refer(url2)
    	var count int
    	regProtocol.registries.Range(func(key, value interface{}) bool {
    		count++
    		return true
    	})
    	assert.Equal(t, count, 1)
    }
    
    func exporterNormal(t *testing.T, regProtocol *registryProtocol) *common.URL {
    	extension.SetProtocol("registry", GetProtocol)
    	extension.SetRegistry("mock", registry.NewMockRegistry)
    	extension.SetProtocol(protocolwrapper.FILTER, protocolwrapper.NewMockProtocolFilter)
    	url, _ := common.NewURL("mock://127.0.0.1:1111")
    	suburl, _ := common.NewURL(
    		"dubbo://127.0.0.1:20000/org.apache.dubbo-go.mockService",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    		common.WithParamsValue(constant.GROUP_KEY, "group"),
    		common.WithParamsValue(constant.VERSION_KEY, "1.0.0"),
    	)
    
    	url.SubURL = &suburl
    	invoker := protocol.NewBaseInvoker(url)
    	exporter := regProtocol.Export(invoker)
    
    	assert.IsType(t, &protocol.BaseExporter{}, exporter)
    	assert.Equal(t, exporter.GetInvoker().GetUrl().String(), suburl.String())
    	return &url
    }
    
    func TestExporter(t *testing.T) {
    
    	regProtocol := newRegistryProtocol()
    	exporterNormal(t, regProtocol)
    }
    
    func TestMultiRegAndMultiProtoExporter(t *testing.T) {
    	regProtocol := newRegistryProtocol()
    	exporterNormal(t, regProtocol)
    
    	url2, _ := common.NewURL("mock://127.0.0.1:2222")
    	suburl2, _ := common.NewURL(
    		"jsonrpc://127.0.0.1:20000//",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    	)
    
    	url2.SubURL = &suburl2
    	invoker2 := protocol.NewBaseInvoker(url2)
    	regProtocol.Export(invoker2)
    
    	var count int
    	regProtocol.registries.Range(func(key, value interface{}) bool {
    		count++
    		return true
    	})
    	assert.Equal(t, count, 2)
    
    	var count2 int
    	regProtocol.bounds.Range(func(key, value interface{}) bool {
    		count2++
    		return true
    	})
    	assert.Equal(t, count2, 2)
    }
    
    func TestOneRegAndProtoExporter(t *testing.T) {
    	regProtocol := newRegistryProtocol()
    	exporterNormal(t, regProtocol)
    
    	url2, _ := common.NewURL("mock://127.0.0.1:1111")
    	suburl2, _ := common.NewURL(
    		"dubbo://127.0.0.1:20000/org.apache.dubbo-go.mockService",
    		common.WithParamsValue(constant.CLUSTER_KEY, "mock"),
    		common.WithParamsValue(constant.GROUP_KEY, "group"),
    		common.WithParamsValue(constant.VERSION_KEY, "1.0.0"),
    	)
    
    	url2.SubURL = &suburl2
    	invoker2 := protocol.NewBaseInvoker(url2)
    	regProtocol.Export(invoker2)
    
    	var count int
    	regProtocol.registries.Range(func(key, value interface{}) bool {
    		count++
    		return true
    	})
    	assert.Equal(t, count, 1)
    
    	var count2 int
    	regProtocol.bounds.Range(func(key, value interface{}) bool {
    		count2++
    		return true
    	})
    	assert.Equal(t, count2, 1)
    }
    
    func TestDestry(t *testing.T) {
    	regProtocol := newRegistryProtocol()
    	referNormal(t, regProtocol)
    	exporterNormal(t, regProtocol)
    
    	regProtocol.Destroy()
    	assert.Equal(t, len(regProtocol.invokers), 0)
    
    	var count int
    	regProtocol.registries.Range(func(key, value interface{}) bool {
    		count++
    		return true
    	})
    	assert.Equal(t, count, 0)
    
    	var count2 int
    	regProtocol.bounds.Range(func(key, value interface{}) bool {
    		count2++
    		return true
    	})
    	assert.Equal(t, count2, 0)
    }
    
    func TestExportWithOverrideListener(t *testing.T) {
    	extension.SetDefaultConfigurator(configurator.NewMockConfigurator)
    
    	regProtocol := newRegistryProtocol()
    	url := exporterNormal(t, regProtocol)
    	var reg *registry.MockRegistry
    	if regI, loaded := regProtocol.registries.Load(url.Key()); loaded {
    		reg = regI.(*registry.MockRegistry)
    	} else {
    		assert.Fail(t, "regProtocol.registries.Load can not be loaded")
    		return
    	}
    	overrideUrl, _ := common.NewURL(
    		"override://0:0:0:0/org.apache.dubbo-go.mockService?cluster=mock1&&group=group&&version=1.0.0",
    	)
    	event := &registry.ServiceEvent{Action: remoting.EventTypeAdd, Service: overrideUrl}
    	reg.MockEvent(event)
    	time.Sleep(1e9)
    	newUrl := url.SubURL.Clone()
    	newUrl.SetParam(constant.CLUSTER_KEY, "mock1")
    	v2, _ := regProtocol.bounds.Load(getCacheKey(newUrl))
    	assert.NotNil(t, v2)
    }
    
    func TestExportWithServiceConfig(t *testing.T) {
    	extension.SetDefaultConfigurator(configurator.NewMockConfigurator)
    	ccUrl, _ := common.NewURL("mock://127.0.0.1:1111")
    	dc, _ := (&config_center.MockDynamicConfigurationFactory{}).GetDynamicConfiguration(&ccUrl)
    	common_cfg.GetEnvInstance().SetDynamicConfiguration(dc)
    	regProtocol := newRegistryProtocol()
    	url := exporterNormal(t, regProtocol)
    	if _, loaded := regProtocol.registries.Load(url.Key()); !loaded {
    		assert.Fail(t, "regProtocol.registries.Load can not be loaded")
    		return
    	}
    	dc.(*config_center.MockDynamicConfiguration).MockServiceConfigEvent()
    
    	newUrl := url.SubURL.Clone()
    	newUrl.SetParam(constant.CLUSTER_KEY, "mock1")
    	v2, _ := regProtocol.bounds.Load(getCacheKey(newUrl))
    	assert.NotNil(t, v2)
    }
    
    func TestExportWithApplicationConfig(t *testing.T) {
    	extension.SetDefaultConfigurator(configurator.NewMockConfigurator)
    	ccUrl, _ := common.NewURL("mock://127.0.0.1:1111")
    	dc, _ := (&config_center.MockDynamicConfigurationFactory{}).GetDynamicConfiguration(&ccUrl)
    	common_cfg.GetEnvInstance().SetDynamicConfiguration(dc)
    	regProtocol := newRegistryProtocol()
    	url := exporterNormal(t, regProtocol)
    	if _, loaded := regProtocol.registries.Load(url.Key()); !loaded {
    		assert.Fail(t, "regProtocol.registries.Load can not be loaded")
    		return
    	}
    	dc.(*config_center.MockDynamicConfiguration).MockApplicationConfigEvent()
    
    	newUrl := url.SubURL.Clone()
    	newUrl.SetParam(constant.CLUSTER_KEY, "mock1")
    	v2, _ := regProtocol.bounds.Load(getCacheKey(newUrl))
    	assert.NotNil(t, v2)
    }
    
    func TestGetProviderUrlWithHideKey(t *testing.T) {
    	url, _ := common.NewURL("dubbo://127.0.0.1:1111?a=a1&b=b1&.c=c1&.d=d1&e=e1&protocol=registry")
    	providerUrl := getUrlToRegistry(&url, &url)
    	assert.NotContains(t, providerUrl.GetParams(), ".c")
    	assert.NotContains(t, providerUrl.GetParams(), ".d")
    	assert.Contains(t, providerUrl.GetParams(), "a")
    
    }