// TestDeleteRegex validates the removal of a regex from the database. func TestDeleteRegex(t *testing.T) { const fixture = "basic.json" rgx1, db := setup(t, fixture) defer teardown(t, db) rgxName := prefix + "_basic" rgxBadName := prefix + "_basic_advice" t.Log("Given the need to delete a regex in the database.") { 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) if err := regex.Delete(tests.Context, db, rgxName); err != nil { t.Fatalf("\t%s\tShould be able to delete a regex using its name[%s]: %s", tests.Failed, rgxName, err) } t.Logf("\t%s\tShould be able to delete a regex using its name[%s]:", tests.Success, rgxName) if err := regex.Delete(tests.Context, db, rgxBadName); err == nil { t.Fatalf("\t%s\tShould not be able to delete a regex using wrong name name[%s]", tests.Failed, rgxBadName) } t.Logf("\t%s\tShould not be able to delete a regex using wrong name name[%s]", tests.Success, rgxBadName) if _, err := regex.GetByName(tests.Context, db, rgxName); err == nil { t.Fatalf("\t%s\tShould be able to validate regex with Name[%s] does not exists: %s", tests.Failed, rgxName, errors.New("Record Exists")) } t.Logf("\t%s\tShould be able to validate regex with Name[%s] does not exists:", tests.Success, rgxName) } } }
// 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) } } }
// Retrieve returns the specified regex from the system. // 200 Success, 400 Bad Request, 404 Not Found, 500 Internal func (regexHandle) Retrieve(c *web.Context) error { rgx, err := regex.GetByName(c.SessionID, c.Ctx["DB"].(*db.DB), c.Params["name"]) if err != nil { if err == regex.ErrNotFound { err = web.ErrNotFound } return err } c.Respond(rgx, http.StatusOK) return nil }
// 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) } } } }
// validateRegex compares the value to the configured regex. func validateRegex(context interface{}, db *db.DB, value string, name string) error { rgx, err := regex.GetByName(context, db, name) if err != nil { return err } if rgx.Compile == nil { err := errors.New("FATAL ERROR: Regex is not pre-compiled") log.Error(context, "validateRegex", err, "Check compiled") return err } if !rgx.Compile.MatchString(value) { err := fmt.Errorf("Value %q does not match %q expression", value, rgx.Name) log.Error(context, "validateRegex", err, "Preform match") return err } return nil }
// 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) } } } }