Skip to content

Commit

Permalink
moved to EN
Browse files Browse the repository at this point in the history
  • Loading branch information
gmontalvoy committed Dec 5, 2023
1 parent c58a7ac commit 864e7d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
12 changes: 3 additions & 9 deletions app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,22 @@ import (
)

func TestHandler(t *testing.T) {
// Crear un request para pasar al handler.
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}

// Crear un ResponseRecorder (httptest.ResponseWriter) para grabar las respuestas.
rr := httptest.NewRecorder()
handler := http.HandlerFunc(handler)

// El handler satisface http.Handler, así que podemos llamar a su método ServeHTTP directamente
// y pasarle nuestro Request y ResponseRecorder.
handler.ServeHTTP(rr, req)

// Comprobar el código de estado de la respuesta.
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler devolvió un código incorrecto: obtuvo %v, esperaba %v", status, http.StatusOK)
t.Errorf("handler error: got %v, expected %v", status, http.StatusOK)
}

// Comprobar el cuerpo de la respuesta.
expected := `Hola, este es un servidor web básico en Go!`
expected := `ok`
if rr.Body.String() != expected {
t.Errorf("handler devolvió un cuerpo inesperado: obtuvo %v, esperaba %v", rr.Body.String(), expected)
t.Errorf("handler returns unexpected body: got %v, expected %v", rr.Body.String(), expected)
}
}
2 changes: 1 addition & 1 deletion sampleGoApp.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hola, este es un servidor web básico en Go!")
fmt.Fprintf(w, "ok")
}

func main() {
Expand Down

0 comments on commit 864e7d5

Please sign in to comment.