mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 00:35:41 +00:00
86092a8640
Bumps the sdk-golang dependency from v1 to the v2 module (`github.com/openziti/sdk-golang/v2` at v2.0.0-pre1) and updates all import paths. This is a no-behavior-change precursor that isolates the dependency migration from the Connect-V2 feature work in #3884. - Rewrites `github.com/openziti/sdk-golang/...` imports to `github.com/openziti/sdk-golang/v2/...` across the main and zititest modules. - Pins both modules to `github.com/openziti/sdk-golang/v2 v2.0.0-pre1`. - Adapts `edgeXgressConn.AcceptMessage` to the v2 `MsgSink` signature, which now takes an `edge.SdkChannel` argument. - Replaces the removed `edge.Conn.GetRouterId()` with `RemoteAddr().String()` in the loop4 traffic-test logging. For openziti/sdk-golang#936.
103 lines
2.8 KiB
Go
103 lines
2.8 KiB
Go
//go:build dataflow
|
|
|
|
/*
|
|
Copyright NetFoundry Inc.
|
|
|
|
Licensed 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
|
|
|
|
https://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 tests
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/michaelquigley/pfxlog"
|
|
"github.com/openziti/sdk-golang/v2/ziti"
|
|
"github.com/openziti/ziti/v2/common/eid"
|
|
)
|
|
|
|
func Test_HSDataflow(t *testing.T) {
|
|
ctx := NewTestContext(t)
|
|
defer ctx.Teardown()
|
|
ctx.StartServer()
|
|
ctx.RequireAdminManagementApiLogin()
|
|
|
|
service := ctx.AdminManagementSession.RequireNewServiceAccessibleToAll("weighted")
|
|
|
|
ctx.CreateEnrollAndStartEdgeRouter()
|
|
|
|
watcher := ctx.AdminManagementSession.newTerminatorWatcher(service.Id, 2)
|
|
defer watcher.Close()
|
|
|
|
_, hostContext1 := ctx.AdminManagementSession.RequireCreateSdkContext()
|
|
defer hostContext1.Close()
|
|
|
|
listener1, err := hostContext1.Listen(service.Name)
|
|
ctx.Req.NoError(err)
|
|
|
|
_, hostContext2 := ctx.AdminManagementSession.RequireCreateSdkContext()
|
|
defer hostContext2.Close()
|
|
|
|
listener2, err := hostContext2.Listen(service.Name)
|
|
ctx.Req.NoError(err)
|
|
defer func() { _ = listener2.Close() }()
|
|
|
|
watcher.waitForTerminators(2 * time.Second)
|
|
|
|
serverHandler := func(conn *testServerConn) error {
|
|
for {
|
|
name, eof := conn.ReadString(1024, time.Minute)
|
|
if eof {
|
|
return nil
|
|
}
|
|
|
|
pfxlog.Logger().Tracef("%v-%v: received '%v' from client\n", conn.server.idx, conn.id, name)
|
|
|
|
result := "hello, " + name
|
|
pfxlog.Logger().Tracef("%v-%v: returning '%v' to client\n", conn.server.idx, conn.id, result)
|
|
conn.WriteString(result, time.Second)
|
|
atomic.AddUint32(&conn.server.msgCount, 1)
|
|
}
|
|
}
|
|
|
|
server1 := newTestServer(listener1, serverHandler)
|
|
server2 := newTestServer(listener2, serverHandler)
|
|
server1.start()
|
|
server2.start()
|
|
|
|
clientIdentity := ctx.AdminManagementSession.RequireNewIdentityWithOtt(false)
|
|
clientConfig := ctx.EnrollIdentity(clientIdentity.Id)
|
|
|
|
clientContext, err := ziti.NewContext(clientConfig)
|
|
ctx.Req.NoError(err)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
conn := ctx.WrapConn(clientContext.Dial(service.Name))
|
|
|
|
name := eid.New()
|
|
conn.WriteString(name, time.Second)
|
|
conn.ReadExpected("hello, "+name, time.Second)
|
|
conn.RequireClose()
|
|
}
|
|
|
|
ctx.Req.NoError(listener1.Close())
|
|
server1.waitForDone(ctx, 5*time.Second)
|
|
ctx.Req.True(atomic.LoadUint32(&server1.msgCount) > 25)
|
|
|
|
ctx.Req.NoError(listener2.Close())
|
|
server2.waitForDone(ctx, 5*time.Second)
|
|
ctx.Req.True(atomic.LoadUint32(&server2.msgCount) > 25)
|
|
}
|