Add docker containers to test services.

This commit initializes the needed services which are not mocked
so tests can be executed in any environment with docker.

Some default modifications (i.e: connection strings) were also made to
current tests to accomodate them for this setup.

A docker-compose.yml file is provided with all the necessary parameters
for this services to be initialized. Future services can be added
easily by extending this configuration file

In addition a makefile has been introduced to simplify command execution
This commit is contained in:
Marcos Lilljedahl
2015-07-06 01:46:43 -03:00
parent 1d8e6473c6
commit d545b197ea
7 changed files with 54 additions and 9 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
prepare:
go get -d -v -t ./...
docker-compose up -d
test: prepare
go test -short ./...
update:
go get -u -v -d -t ./...
.PHONY: test