blob: 5d579986fc6dc7614aef950fd73adcfc527a39e8 [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 electron
import (
"net"
"sync"
"testing"
"github.com/apache/qpid-proton/go/pkg/internal/test"
)
// AMQP client/server pair
type pair struct {
t testing.TB
client Session
server Connection
capacity int
prefetch bool
rchan chan Receiver
schan chan Sender
auth connectionSettings
}
func newPair(t testing.TB, cli, srv Connection) *pair {
cs, _ := cli.Session()
p := &pair{
t: t,
client: cs,
server: srv,
capacity: 100,
rchan: make(chan Receiver),
schan: make(chan Sender)}
go func() {
for i := range p.server.Incoming() {
switch i := i.(type) {
case *IncomingReceiver:
if p.capacity > 0 {
i.SetCapacity(p.capacity)
}
i.SetPrefetch(p.prefetch)
p.rchan <- i.Accept().(Receiver)
break
case *IncomingSender:
p.schan <- i.Accept().(Sender)
default:
i.Accept()
}
}
}()
return p
}
// AMQP pair linked by in-memory pipe
func newPipe(t testing.TB, clientOpts, serverOpts []ConnectionOption) *pair {
cli, srv := net.Pipe()
opts := []ConnectionOption{Server(), ContainerId("server")}
sc, _ := NewConnection(srv, append(opts, serverOpts...)...)
opts = []ConnectionOption{ContainerId("client")}
cc, _ := NewConnection(cli, append(opts, clientOpts...)...)
return newPair(t, cc, sc)
}
// AMQP pair linked by TCP socket
func newSocketPair(t testing.TB, clientOpts, serverOpts []ConnectionOption) *pair {
l, err := net.Listen("tcp4", ":0") // For systems with ipv6 disabled
test.FatalIfN(1, t, err)
var srv Connection
var srvErr error
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
srv, srvErr = NewContainer("server").Accept(l, serverOpts...)
}()
addr := l.Addr()
cli, err := NewContainer("client").Dial(addr.Network(), addr.String(), clientOpts...)
test.FatalIfN(1, t, err)
wg.Wait()
test.FatalIfN(1, t, srvErr)
return newPair(t, cli, srv)
}
func (p *pair) close() { p.client.Connection().Close(nil); p.server.Close(nil) }
// Return a client sender and server receiver
func (p *pair) sender(opts ...LinkOption) (Sender, Receiver) {
snd, err := p.client.Sender(opts...)
test.FatalIfN(1, p.t, err)
rcv := <-p.rchan
return snd, rcv
}
// Return a client receiver and server sender
func (p *pair) receiver(opts ...LinkOption) (Receiver, Sender) {
rcv, err := p.client.Receiver(opts...)
test.FatalIfN(1, p.t, err)
snd := <-p.schan
return rcv, snd
}