Skip to content

kokizzu/fiber1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fiber1 Demo

This is example of how to structure your golang project article with fiber and standard mysql (you can change it to whatever framework and persistence libraries you like, the structure should still be similar).

This is example how to do these things:

  1. Web page
  2. Form
  3. API / CRUD
  4. MySQL
  5. Fiber without ORM
  6. DockerTest
  7. AutoGold

This aproach doesn't do clean architecture (since the persistence layer is not injected), but the business logic is pure/should not contain transport/serialization. the model itself depends on real persistence and tested using dockertest, so it should always works and testable even without function injection or dependency injection. The cons of this aproach is the test is slower because it have to spawn a docker fist.

Dependencies

docker-compose up

air

Setup Database

mysql -u root -h 127.0.0.1 -p

CREATE DATABASE test1;

Run tests

make test

Updating test gold

cd business

go test -update .

How to test manually

curl -X POST -d 'email=b@gmail.com&password=test&name=Kis' http://127.0.0.1:3000/guest/register
curl -X POST -H 'content-type: application/json' -d '{"email":"c@gmail.com","password":"test","name":"Kis"}' http://127.0.0.1:3000/guest/register

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published