Fix test, improve error handling
This commit is contained in:
parent
f35410e0ae
commit
f9164034dd
8 changed files with 40 additions and 20 deletions
|
@ -24,6 +24,11 @@ var (
|
|||
TemplateName: "error_school_exists",
|
||||
Err: errors.New(i18n.Errors["schoolExists"]["it"]),
|
||||
}
|
||||
|
||||
ParticipantExists = &Error{
|
||||
TemplateName: "error_participant_exists",
|
||||
Err: errors.New(i18n.Errors["participantExists"]["it"]),
|
||||
}
|
||||
|
||||
CategoryExists = &Error{
|
||||
TemplateName: "error_category_exists",
|
||||
|
|
|
@ -376,16 +376,23 @@ func respondWithError(h *Handlers, w http.ResponseWriter, r *http.Request, err e
|
|||
}
|
||||
|
||||
func (h *Handlers) Create(model interface{}) http.Handler {
|
||||
fn := func(w http.ResponseWriter, r *http.Request) {
|
||||
fn := func(w http.ResponseWriter, r *http.Request) error {
|
||||
switch r.Method {
|
||||
case "GET":
|
||||
h.get(w, r, reflect.ModelNameLowerPlural(model), h.Config.CreatePattern())
|
||||
err := h.get(w, r, reflect.ModelNameLowerPlural(model), h.Config.CreatePattern())
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
case "POST":
|
||||
h.post(w, r, reflect.ModelNameLowerPlural(model), h.Config.CreatePattern())
|
||||
err := h.post(w, r, reflect.ModelNameLowerPlural(model), h.Config.CreatePattern())
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
return http.HandlerFunc(fn)
|
||||
return newRootMiddleware(h, fn)
|
||||
}
|
||||
|
||||
func (h *Handlers) ReadAll(model interface{}) http.Handler {
|
||||
|
@ -493,7 +500,9 @@ func (m *rootMiddleware) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
// This is where our error handling logic starts.
|
||||
log.Printf("An error accured: %v", err) // Log the error.
|
||||
if m.h.Config.LogLevel > config.LOG_LEVEL_OFF {
|
||||
log.Printf("An error accured: %v", err) // Log the error.
|
||||
}
|
||||
|
||||
respondWithError(m.h, w, r, err)
|
||||
}
|
||||
|
|
|
@ -175,7 +175,8 @@ func (t *testSuite) BeforeAll() {
|
|||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
// conf.LogLevel = config.LOG_LEVEL_OFF
|
||||
|
||||
conf.LogLevel = config.LOG_LEVEL_OFF
|
||||
|
||||
// Initialize the ORM
|
||||
|
||||
|
@ -371,8 +372,10 @@ func (t *testSuite) TestSchoolSubscription() {
|
|||
|
||||
t.Equal(http.StatusSeeOther, rr.Code)
|
||||
|
||||
log.Println(rr.Header())
|
||||
schoolId, err := getIdFromPath(rr.Header()["Location"][0])
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if !t.Failed() {
|
||||
doc, err := goquery.NewDocumentFromReader(rr.Body)
|
||||
if err != nil {
|
||||
|
@ -425,8 +428,13 @@ func (t *testSuite) TestSchoolSubscription() {
|
|||
router.ServeHTTP(rr, req)
|
||||
|
||||
t.Equal(http.StatusSeeOther, rr.Code)
|
||||
|
||||
t.Equal(http.StatusOK, deleteParticipant(1001))
|
||||
if !t.Failed() {
|
||||
participantId, err := getIdFromPath(rr.Header()["Location"][0])
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
t.Equal(http.StatusOK, deleteParticipant(participantId))
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -455,12 +463,11 @@ func (t *testSuite) TestUserModifier() {
|
|||
t.Equal(http.StatusOK, rr.Code)
|
||||
|
||||
if !t.Failed() {
|
||||
fmt.Println(rr.Body)
|
||||
doc, err := goquery.NewDocumentFromReader(rr.Body)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
expected := "admin[administrator]"
|
||||
expected := "subscriber[subscriber]"
|
||||
ok := false
|
||||
doc.Find("dd").Each(func(i int, s *goquery.Selection) {
|
||||
if strings.Contains(s.Text(), expected) {
|
||||
|
|
|
@ -47,6 +47,9 @@ var (
|
|||
"schoolExists": map[string]string{
|
||||
"it": "Una scuola con questo codice meccanografico è già presente nella base dati!",
|
||||
},
|
||||
"participantExists": map[string]string{
|
||||
"it": "Un partecipante con questo codice fiscale è già presente nella base dati!",
|
||||
},
|
||||
"contestHasZeroQuestions": map[string]string{
|
||||
"it": "La gara a cui il partecipante è iscritto non contiene alcuna domanda.",
|
||||
},
|
||||
|
|
|
@ -203,11 +203,7 @@ func (model *Participant) Create(db *Database, args map[string]string, w http.Re
|
|||
if err := db._db.Where("user_id = ?", user.ID).Find(&participant).Error; err != nil {
|
||||
return nil, err
|
||||
}
|
||||
// err := setFlashMessage(w, r, "participantExists")
|
||||
// if err != nil {
|
||||
// return nil, err
|
||||
// }
|
||||
return participant, nil
|
||||
return nil, errors.ParticipantExists
|
||||
} else if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ type School struct {
|
|||
|
||||
Region *Region
|
||||
User *User
|
||||
Participants []*Participant
|
||||
Participants []*Participant `gorm:"PRELOAD:false"`
|
||||
|
||||
SelectedRegion map[uint]string `gorm:"-"`
|
||||
AllRegions []*Region `gorm:"-"`
|
||||
|
@ -211,7 +211,7 @@ func (model *School) Read(db *Database, args map[string]string, w http.ResponseW
|
|||
return nil, errors.NotAuthorized
|
||||
}
|
||||
|
||||
if err := db._db.Set("gorm:auto_preload", true).First(&school, id).Error; err != nil {
|
||||
if err := db._db.Set("gorm:auto_preload", true).Preload("Participants").First(&school, id).Error; err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
Si è verificato un errore durante la creazione o l'aggiornamento di un partecipante: <strong>{{.Data}}</strong>
|
||||
</p>
|
||||
<p>
|
||||
Clicca {{all "Participant"|anchor "qui"}} per tornare all'elenco dei partecipanti.
|
||||
Clicca {{create "Participant"|anchor "qui"}} per tornare al modulo di creazione del partecipante.
|
||||
</p>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<div class="container">
|
||||
<h1 class="border-bottom">Errore</h1>
|
||||
<p>
|
||||
Si è verificato un errore durante la creazione o l'aggiornamento di un partecipante: <strong>{{.Data}}</strong>
|
||||
Si è verificato un errore durante la creazione o l'aggiornamento di una scuola: <strong>{{.Data}}</strong>
|
||||
</p>
|
||||
<p>
|
||||
Clicca {{create "School"|anchor "qui"}} per tornare al modulo di iscrizione.
|
||||
|
|
Loading…
Reference in a new issue