person-api-echo

module
v0.0.0-...-c534d4e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 24, 2023 License: GPL-3.0

README

person-api-echo

Migrated files from person-api-http-net to echo framework version

Handler

[x] login.login()

  • person: [x] create() [x] update() [x] delete() [x] getByID() [x] getAll() [x] response.responseJSON() (borrar)
  • route [x] RoutePerson() [x] RouteLogin()
Middleware

[x] Log() (borrar) [x] Authentication() [x] forbidden() (borrar)

CMD

[x] Register using echo

Tests

Tipos de pruebas:

  • Tests unitarios: prueban funcionalidades específicas del sistema
  • Tests de integración: evalúan la interacción de sistemas externos y que interactúan con el nuestro

Comandos para ejecutar tests en Go:

  • All tests in folder: go test
  • All tests in folder (verbose): go test -v
  • Execute especific test: go test TestName
  • Execute especific test (verbose): go test TestName -v
  • Recursive execution (from root): go test ./...

NOTE: Tests run in concurrent way, therefore, execute go test ./... is recommended for unit tests but not for integration tests, in order to solve this last, we could create a script all tests into every package. An example of such script might be written in unix bash format:

#!/bin/sh

for d in $(go list ./...); do
echo "Testeando el paquete $d"
go test -v $d
done

  • Privileges: ch mod a+x testing.sh
  • Execution: ./testing.sh



  • Code coverage: go test -coverprofile=profile.out
  • Summary of coverage (CLI): go tool cover -func=profile.out
  • Visual coverage (HTML): go tool cover -html=profile.out

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL