mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	move test data
This commit is contained in:
		| @@ -7,13 +7,14 @@ import ( | ||||
|  | ||||
| 	proto "github.com/micro/go-micro/debug/proto" | ||||
| 	"github.com/micro/go-micro/registry/memory" | ||||
| 	"github.com/micro/go-micro/util/test" | ||||
| ) | ||||
|  | ||||
| func TestFunction(t *testing.T) { | ||||
| 	var wg sync.WaitGroup | ||||
| 	wg.Add(1) | ||||
|  | ||||
| 	r := memory.NewRegistry(memory.Services(testData)) | ||||
| 	r := memory.NewRegistry(memory.Services(test.Data)) | ||||
|  | ||||
| 	// create service | ||||
| 	fn := NewFunction( | ||||
|   | ||||
| @@ -14,8 +14,8 @@ import ( | ||||
| 	"github.com/micro/go-micro/debug/profile/pprof" | ||||
| 	"github.com/micro/go-micro/plugin" | ||||
| 	"github.com/micro/go-micro/server" | ||||
| 	"github.com/micro/go-micro/util/wrapper" | ||||
| 	"github.com/micro/go-micro/util/log" | ||||
| 	"github.com/micro/go-micro/util/wrapper" | ||||
| ) | ||||
|  | ||||
| type service struct { | ||||
|   | ||||
| @@ -11,6 +11,7 @@ import ( | ||||
| 	proto "github.com/micro/go-micro/debug/proto" | ||||
| 	"github.com/micro/go-micro/registry/memory" | ||||
| 	"github.com/micro/go-micro/util/log" | ||||
| 	"github.com/micro/go-micro/util/test" | ||||
| ) | ||||
|  | ||||
| func testShutdown(wg *sync.WaitGroup, cancel func()) { | ||||
| @@ -29,7 +30,7 @@ func testService(ctx context.Context, wg *sync.WaitGroup, name string) Service { | ||||
| 	// add self | ||||
| 	wg.Add(1) | ||||
|  | ||||
| 	r := memory.NewRegistry(memory.Services(testData)) | ||||
| 	r := memory.NewRegistry(memory.Services(test.Data)) | ||||
|  | ||||
| 	// create service | ||||
| 	return NewService( | ||||
|   | ||||
| @@ -1,12 +1,12 @@ | ||||
| package micro | ||||
| package test | ||||
| 
 | ||||
| import ( | ||||
| 	"github.com/micro/go-micro/registry" | ||||
| ) | ||||
| 
 | ||||
| var ( | ||||
| 	// mock data | ||||
| 	testData = map[string][]*registry.Service{ | ||||
| 	// mock registry data | ||||
| 	Data = map[string][]*registry.Service{ | ||||
| 		"foo": { | ||||
| 			{ | ||||
| 				Name:    "foo", | ||||
| @@ -49,9 +49,9 @@ func (c *clientWrapper) Publish(ctx context.Context, p client.Message, opts ...c | ||||
| // FromService wraps a client to inject From-Service header into metadata | ||||
| func FromService(name string, c client.Client) client.Client { | ||||
| 	return &clientWrapper{ | ||||
|                 c, | ||||
|                 metadata.Metadata{ | ||||
|                         HeaderPrefix + "From-Service": name, | ||||
|                 }, | ||||
|         } | ||||
| 		c, | ||||
| 		metadata.Metadata{ | ||||
| 			HeaderPrefix + "From-Service": name, | ||||
| 		}, | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user