From e3e82c7351a70da2ddfbf64da72575c6dc2ea37b Mon Sep 17 00:00:00 2001 From: Lance Add <1196661499@qq.com> Date: Fri, 13 Dec 2024 09:57:28 +0800 Subject: [PATCH] feat(contrib/config/nacos): add OnChange callbacks configuration support (#4038) --- contrib/config/nacos/nacos.go | 13 +++++---- contrib/config/nacos/nacos_test.go | 43 +++++++++++++++++++++++++++++- 2 files changed, 50 insertions(+), 6 deletions(-) diff --git a/contrib/config/nacos/nacos.go b/contrib/config/nacos/nacos.go index 5327b9d6e..a952fb3fb 100644 --- a/contrib/config/nacos/nacos.go +++ b/contrib/config/nacos/nacos.go @@ -23,10 +23,11 @@ import ( // Config is the configuration object for nacos client. type Config struct { - ServerConfigs []constant.ServerConfig `v:"required"` // See constant.ServerConfig - ClientConfig constant.ClientConfig `v:"required"` // See constant.ClientConfig - ConfigParam vo.ConfigParam `v:"required"` // See vo.ConfigParam - Watch bool // Watch watches remote configuration updates, which updates local configuration in memory immediately when remote configuration changes. + ServerConfigs []constant.ServerConfig `v:"required"` // See constant.ServerConfig + ClientConfig constant.ClientConfig `v:"required"` // See constant.ClientConfig + ConfigParam vo.ConfigParam `v:"required"` // See vo.ConfigParam + Watch bool // Watch watches remote configuration updates, which updates local configuration in memory immediately when remote configuration changes. + OnConfigChange func(namespace, group, dataId, data string) // Configure change callback function } // Client implements gcfg.Adapter implementing using nacos service. @@ -125,9 +126,11 @@ func (c *Client) addWatcher() error { if !c.config.Watch { return nil } - c.config.ConfigParam.OnChange = func(namespace, group, dataId, data string) { c.doUpdate(data) + if c.config.OnConfigChange != nil { + go c.config.OnConfigChange(namespace, group, dataId, data) + } } if err := c.client.ListenConfig(c.config.ConfigParam); err != nil { diff --git a/contrib/config/nacos/nacos_test.go b/contrib/config/nacos/nacos_test.go index 4adcfdaa6..473a81747 100644 --- a/contrib/config/nacos/nacos_test.go +++ b/contrib/config/nacos/nacos_test.go @@ -7,11 +7,14 @@ package nacos_test import ( + "net/url" "testing" + "time" "github.com/nacos-group/nacos-sdk-go/v2/common/constant" "github.com/nacos-group/nacos-sdk-go/v2/vo" + "github.com/gogf/gf/v2/encoding/gjson" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gctx" "github.com/gogf/gf/v2/test/gtest" @@ -34,6 +37,7 @@ var ( DataId: "config.toml", Group: "test", } + configPublishUrl = "http://localhost:8848/nacos/v2/cs/config?type=toml&namespaceId=public&group=test&dataId=config.toml" ) func TestNacos(t *testing.T) { @@ -48,7 +52,6 @@ func TestNacos(t *testing.T) { config.SetAdapter(adapter) t.Assert(config.Available(ctx), true) - v, err := config.Get(ctx, `server.address`) t.AssertNil(err) t.Assert(v.String(), ":8000") @@ -58,3 +61,41 @@ func TestNacos(t *testing.T) { t.AssertGT(len(m), 0) }) } + +func TestNacosOnConfigChangeFunc(t *testing.T) { + gtest.C(t, func(t *gtest.T) { + adapter, _ := nacos.New(ctx, nacos.Config{ + ServerConfigs: []constant.ServerConfig{serverConfig}, + ClientConfig: clientConfig, + ConfigParam: configParam, + Watch: true, + OnConfigChange: func(namespace, group, dataId, data string) { + gtest.Assert("public", namespace) + gtest.Assert("test", group) + gtest.Assert("config.toml", dataId) + gtest.Assert("gf", g.Cfg().MustGet(gctx.GetInitCtx(), "app.name").String()) + }, + }) + g.Cfg().SetAdapter(adapter) + t.Assert(g.Cfg().Available(ctx), true) + appName, err := g.Cfg().Get(ctx, "app.name") + t.AssertNil(err) + t.Assert(appName.String(), "") + c, err := g.Cfg().Data(ctx) + t.AssertNil(err) + j := gjson.New(c) + err = j.Set("app.name", "gf") + t.AssertNil(err) + res, err := j.ToTomlString() + t.AssertNil(err) + _, err = g.Client().Post(ctx, configPublishUrl+"&content="+url.QueryEscape(res)) + t.AssertNil(err) + time.Sleep(5 * time.Second) + err = j.Remove("app") + t.AssertNil(err) + res2, err := j.ToTomlString() + t.AssertNil(err) + _, err = g.Client().Post(ctx, configPublishUrl+"&content="+url.QueryEscape(res2)) + t.AssertNil(err) + }) +}