mirror of https://github.com/tidwall/tile38.git
34 lines
929 B
Go
34 lines
929 B
Go
package amqp
|
|
|
|
import "testing"
|
|
|
|
func shouldNotPanic(t *testing.T) {
|
|
if err := recover(); err != nil {
|
|
t.Fatalf("should not panic, got: %s", err)
|
|
}
|
|
}
|
|
|
|
// A closed delivery chan could produce zero value. Ack/Nack/Reject on these
|
|
// deliveries can produce a nil pointer panic. Instead return an error when
|
|
// the method can never be successful.
|
|
func TestAckZeroValueAcknowledgerDoesNotPanic(t *testing.T) {
|
|
defer shouldNotPanic(t)
|
|
if err := (Delivery{}).Ack(false); err == nil {
|
|
t.Errorf("expected Delivery{}.Ack to error")
|
|
}
|
|
}
|
|
|
|
func TestNackZeroValueAcknowledgerDoesNotPanic(t *testing.T) {
|
|
defer shouldNotPanic(t)
|
|
if err := (Delivery{}).Nack(false, false); err == nil {
|
|
t.Errorf("expected Delivery{}.Ack to error")
|
|
}
|
|
}
|
|
|
|
func TestRejectZeroValueAcknowledgerDoesNotPanic(t *testing.T) {
|
|
defer shouldNotPanic(t)
|
|
if err := (Delivery{}).Reject(false); err == nil {
|
|
t.Errorf("expected Delivery{}.Ack to error")
|
|
}
|
|
}
|