Example #1
0
// TestAPIFailureRegexs validates the failure of the api using a nil session.
func TestAPIFailureRegexs(t *testing.T) {
	const fixture = "basic.json"
	rgx1, db := setup(t, fixture)
	defer teardown(t, db)

	rgxName := prefix + "_unknown"

	t.Log("Given the need to validate failure of API with bad session.")
	{
		t.Log("When giving a nil session")
		{
			err := regex.Upsert(tests.Context, nil, rgx1)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused create by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused create by api with bad session: %s", tests.Success, err)

			_, err = regex.GetNames(tests.Context, nil)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused get request by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused get request by api with bad session: %s", tests.Success, err)

			_, err = regex.GetAll(tests.Context, nil, nil)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused get request by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused get request by api with bad session: %s", tests.Success, err)

			_, err = regex.GetByName(tests.Context, nil, rgxName)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused get request by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused get request by api with bad session: %s", tests.Success, err)

			_, err = regex.GetByNames(tests.Context, nil, nil)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused get request by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused get request by api with bad session: %s", tests.Success, err)

			_, err = regex.GetLastHistoryByName(tests.Context, nil, rgxName)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused get request by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused get request by api with bad session: %s", tests.Success, err)

			err = regex.Delete(tests.Context, nil, rgxName)
			if err == nil {
				t.Fatalf("\t%s\tShould be refused delete by api with bad session", tests.Failed)
			}
			t.Logf("\t%s\tShould be refused delete by api with bad session: %s", tests.Success, err)
		}
	}
}
Example #2
0
// TestUpsertUpdateRegex validates update operation of a given Regex.
func TestUpsertUpdateRegex(t *testing.T) {
	const fixture = "basic.json"
	rgx1, db := setup(t, fixture)
	defer teardown(t, db)

	t.Log("Given the need to update a regex into the database.")
	{
		t.Log("\tWhen using two regexs")
		{
			if err := regex.Upsert(tests.Context, db, rgx1); err != nil {
				t.Fatalf("\t%s\tShould be able to create a regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to create a regex.", tests.Success)

			rgx2 := rgx1
			rgx2.Expr = "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"

			if err := regex.Upsert(tests.Context, db, rgx2); err != nil {
				t.Fatalf("\t%s\tShould be able to update a regex record: %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to update a regex record.", tests.Success)

			if _, err := regex.GetLastHistoryByName(tests.Context, db, rgx1.Name); err != nil {
				t.Fatalf("\t%s\tShould be able to retrieve the regex from history: %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to retrieve the regex from history.", tests.Success)

			updRgx, err := regex.GetByName(tests.Context, db, rgx2.Name)
			if err != nil {
				t.Fatalf("\t%s\tShould be able to retrieve a regex record: %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to retrieve a regex record.", tests.Success)

			if updRgx.Name != rgx1.Name {
				t.Errorf("\t%s\tShould be able to get back the same regex name.", tests.Failed)
			} else {
				t.Logf("\t%s\tShould be able to get back the same regex name.", tests.Success)
			}

			if updRgx.Expr == rgx1.Expr {
				t.Logf("\t%+v", updRgx.Expr)
				t.Logf("\t%+v", rgx1.Expr)
				t.Errorf("\t%s\tShould have an updated regex record.", tests.Failed)
			} else {
				t.Logf("\t%s\tShould have an updated regex record.", tests.Success)
			}
		}
	}
}
Example #3
0
// TestUpsertCreateRegex tests if we can create a regex record in the db.
func TestUpsertCreateRegex(t *testing.T) {
	const fixture = "basic.json"
	rgx1, db := setup(t, fixture)
	defer teardown(t, db)

	t.Log("Given the need to save a regex into the database.")
	{
		t.Log("\tWhen using fixture", fixture)
		{
			if err := regex.Upsert(tests.Context, db, rgx1); err != nil {
				t.Fatalf("\t%s\tShould be able to create a regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to create a regex.", tests.Success)

			if _, err := regex.GetLastHistoryByName(tests.Context, db, rgx1.Name); err != nil {
				t.Fatalf("\t%s\tShould be able to retrieve the regex from history: %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to retrieve the regex from history.", tests.Success)

			rgx2, err := regex.GetByName(tests.Context, db, rgx1.Name)
			if err != nil {
				t.Fatalf("\t%s\tShould be able to retrieve the regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to retrieve the regex.", tests.Success)

			if rgx1.Compile, err = regexp.Compile(rgx1.Expr); err != nil {
				t.Fatalf("\t%s\tShould be able to compile the regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to compile the regex.", tests.Success)

			if !reflect.DeepEqual(rgx1, rgx2) {
				t.Logf("\t%+v", rgx1)
				t.Logf("\t%+v", rgx2)
				t.Errorf("\t%s\tShould be able to get back the same regex values.", tests.Failed)
			} else {
				t.Logf("\t%s\tShould be able to get back the same regex values.", tests.Success)
			}
		}
	}
}
Example #4
0
// TestGetLastRegexHistoryByName validates retrieval of Regex from the history
// collection.
func TestGetLastRegexHistoryByName(t *testing.T) {
	const fixture = "basic.json"
	rgx1, db := setup(t, fixture)
	defer teardown(t, db)

	rgxName := prefix + "_basic"

	t.Log("Given the need to retrieve a regex from history.")
	{
		t.Log("\tWhen using regex", rgx1)
		{
			if err := regex.Upsert(tests.Context, db, rgx1); err != nil {
				t.Fatalf("\t%s\tShould be able to create a regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to create a regex.", tests.Success)

			rgx1.Expr = "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"

			if err := regex.Upsert(tests.Context, db, rgx1); err != nil {
				t.Fatalf("\t%s\tShould be able to create a regex : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to create a regex.", tests.Success)

			rgx2, err := regex.GetLastHistoryByName(tests.Context, db, rgxName)
			if err != nil {
				t.Fatalf("\t%s\tShould be able to retrieve the last regex from history : %s", tests.Failed, err)
			}
			t.Logf("\t%s\tShould be able to retrieve the last regex from history.", tests.Success)

			if !reflect.DeepEqual(rgx1, rgx2) {
				t.Logf("\t%+v", rgx1)
				t.Logf("\t%+v", rgx2)
				t.Errorf("\t%s\tShould be able to get back the same regex values.", tests.Failed)
			} else {
				t.Logf("\t%s\tShould be able to get back the same regex values.", tests.Success)
			}
		}
	}
}