Codebase list golang-github-nats-io-jwt / f061a299-c0ed-41c7-bd7f-9e0bf404c043/main exports_test.go
f061a299-c0ed-41c7-bd7f-9e0bf404c043/main

Tree @f061a299-c0ed-41c7-bd7f-9e0bf404c043/main (Download .tar.gz)

exports_test.go @f061a299-c0ed-41c7-bd7f-9e0bf404c043/mainraw · history · blame

package jwt

import (
	"testing"
)

func TestSimpleExportValidation(t *testing.T) {
	e := &Export{Subject: "foo", Type: Stream}

	vr := CreateValidationResults()
	e.Validate(vr)

	if !vr.IsEmpty() {
		t.Errorf("simple export should validate cleanly")
	}

	e.Type = Stream
	vr = CreateValidationResults()
	e.Validate(vr)

	if !vr.IsEmpty() {
		t.Errorf("simple export should validate cleanly")
	}
}

func TestInvalidExportType(t *testing.T) {
	i := &Export{Subject: "foo", Type: Unknown}

	vr := CreateValidationResults()
	i.Validate(vr)

	if vr.IsEmpty() {
		t.Errorf("export with bad type should not validate cleanly")
	}

	if !vr.IsBlocking(true) {
		t.Errorf("invalid type is blocking")
	}
}

func TestServiceExportWithWildcard(t *testing.T) {
	i := &Export{Subject: "foo.*", Type: Service}

	vr := CreateValidationResults()
	i.Validate(vr)

	if len(vr.Issues) != 1 {
		t.Errorf("export with service wildcard shoudl have one failure")
	}

	if vr.IsBlocking(true) {
		t.Errorf("export with wildcard should not be blocking")
	}
}

func TestExportsValidation(t *testing.T) {
	i := &Export{Subject: "foo", Type: Stream}
	i2 := &Export{Subject: "foo.*", Type: Service}

	exports := &Exports{}
	exports.Add(i, i2)

	vr := CreateValidationResults()
	exports.Validate(vr)

	if len(vr.Issues) != 1 {
		t.Errorf("export with wildcard should warn")
	}

	if vr.IsBlocking(true) {
		t.Errorf("export with wildcard should not be blocking")
	}

	if !exports.HasExportContainingSubject("foo") {
		t.Errorf("Export list has the subject, and should say so")
	}

	if !exports.HasExportContainingSubject("foo.*") {
		t.Errorf("Export list has the subject, and should say so")
	}

	if exports.HasExportContainingSubject("bar.*") {
		t.Errorf("Export list does not has the subject, and should say so")
	}
}

func TestOverlappingExports(t *testing.T) {
	i := &Export{Subject: "bar.foo", Type: Stream}
	i2 := &Export{Subject: "bar.*", Type: Stream}

	exports := &Exports{}
	exports.Add(i, i2)

	vr := CreateValidationResults()
	exports.Validate(vr)

	if len(vr.Issues) != 1 {
		t.Errorf("export has overlapping subjects")
	}
}