blob: 92367efa510da510c8aff3cff4788b6b714b5601 [file] [log] [blame]
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -07001#
2# Copyright 2016 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Nathan Knuthedc88da2016-09-17 00:28:05 -070017ifeq ($(VOLTHA_BASE)_set,_set)
18$(error To get started, please source the env.sh file)
19endif
20
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080021ifeq ($(TAG),)
22TAG := latest
23endif
24
David K. Bainbridge03ad7412018-01-19 16:41:38 -080025ifeq ($(TARGET_TAG),)
26TARGET_TAG := latest
27endif
28
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070029include setup.mk
30
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +010031ifneq ($(http_proxy)$(https_proxy),)
32# Include proxies from the environment
33DOCKER_PROXY_ARGS = \
34 --build-arg http_proxy=$(http_proxy) \
35 --build-arg https_proxy=$(https_proxy) \
36 --build-arg ftp_proxy=$(ftp_proxy) \
37 --build-arg no_proxy=$(no_proxy) \
38 --build-arg HTTP_PROXY=$(HTTP_PROXY) \
39 --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \
40 --build-arg FTP_PROXY=$(FTP_PROXY) \
41 --build-arg NO_PROXY=$(NO_PROXY)
42endif
David K. Bainbridge737b74f2018-01-22 12:57:52 -080043DOCKER_BUILD_ARGS = --build-arg TAG=$(TAG) \
44 --build-arg REGISTRY=$(REGISTRY) \
45 --build-arg REPOSITORY=$(REPOSITORY) \
46 $(DOCKER_PROXY_ARGS) $(DOCKER_CACHE_ARG) \
47 --rm --force-rm \
48 $(DOCKER_BUILD_EXTRA_ARGS)
Gertjan Van Droogenbroecke0c9acb2017-11-16 16:54:22 +010049
Zsolt Haraszti41612482016-09-21 12:26:20 -070050VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]')
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070051
David K. Bainbridge03ad7412018-01-19 16:41:38 -080052DOCKER_IMAGE_LIST = \
53 base \
54 voltha \
55 ofagent \
56 tools \
57 fluentd \
58 envoy \
59 go-builder \
60 netconf \
61 shovel \
62 dashd \
63 cli \
64 portainer \
65 nginx \
66 consul \
67 grafana \
68 onos \
69 unum \
70 tester \
71 config-push \
72 j2
73
74.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha ofagent netconf shovel onos dashd cli portainer grafana nginx consul envoy golang envoyd tools opennms logstash unum start stop tag push pull
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070075
ggowdru9974f212017-06-06 23:31:25 -070076# This should to be the first and default target in this Makefile
77help:
78 @echo "Usage: make [<target>]"
79 @echo "where available targets are:"
80 @echo
81 @echo "build : Build the Voltha protos and docker images.\n\
82 If this is the first time you are building, choose \"make build\" option."
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -040083 @echo "production : Build voltha for production deployment"
ggowdru9974f212017-06-06 23:31:25 -070084 @echo "clean : Remove files created by the build and tests"
85 @echo "distclean : Remove venv directory"
86 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
87 @echo "flake8 : Run specifically flake8 tests"
88 @echo "help : Print this help"
89 @echo "protos : Compile all grpc/protobuf files"
90 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
91 @echo "venv : Build local Python virtualenv if did not exist yet"
92 @echo "utest : Run all unit tests"
93 @echo "itest : Run all integration tests"
94 @echo "containers : Build all the docker containers"
95 @echo "docker-base : Build the base docker container used by all other dockers"
96 @echo "voltha : Build the voltha docker container"
ggowdru9974f212017-06-06 23:31:25 -070097 @echo "ofagent : Build the ofagent docker container"
ggowdru9974f212017-06-06 23:31:25 -070098 @echo "netconf : Build the netconf docker container"
99 @echo "shovel : Build the shovel docker container"
100 @echo "onos : Build the onos docker container"
101 @echo "dashd : Build the dashd docker container"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800102 @echo "cli : Build the cli docker container"
ggowdru9974f212017-06-06 23:31:25 -0700103 @echo "portainer : Build the portainer docker container"
104 @echo "grafana : Build the grafana docker container"
105 @echo "nginx : Build the nginx docker container"
schowdhury40739212017-06-12 07:40:31 -0700106 @echo "consul : Build the consul docker container"
David K. Bainbridge215e0242017-09-05 23:18:24 -0700107 @echo "unum : Build the unum docker container"
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800108 @echo "j2 : Build the Jinja2 template container"
109 @echo "start : Start VOLTHA on the current system"
110 @echo "stop : Stop VOLTHA on the current system"
David K. Bainbridge03ad7412018-01-19 16:41:38 -0800111 @echo "tag : Tag a set of images"
112 @echo "push : Push the docker images to an external repository"
113 @echo "pull : Pull the docker images from a repository"
ggowdru9974f212017-06-06 23:31:25 -0700114 @echo
Nathan Knuth5157de02016-09-16 15:20:37 -0700115
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700116## New directories can be added here
117DIRS:=\
Nathan Knuthedc88da2016-09-17 00:28:05 -0700118voltha/northbound/openflow \
119voltha/northbound/openflow/agent \
120voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700121
122## If one directory depends on another directory that
123## dependency can be expressed here
124##
125## For example, if the Tibit directory depended on the eoam
126## directory being built first, then that can be expressed here.
127## driver/tibit: eoam
128
129# Parallel Build
130$(DIRS):
131 @echo " MK $@"
132 $(Q)$(MAKE) -C $@
133
134# Parallel Clean
135DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
136$(DIRS_CLEAN):
137 @echo " CLEAN $(basename $@)"
138 $(Q)$(MAKE) -C $(basename $@) clean
139
140# Parallel Flake8
141DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
142$(DIRS_FLAKE8):
143 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -0700144 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700145
Zsolt Harasztidb892332017-01-09 11:08:38 -0800146build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -0700147
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400148production: protos prod-containers
149
khenaidoofe874ae2017-07-14 18:07:27 -0400150jenkins : protos jenkins-containers
151
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800152jenkins-containers: docker-base voltha ofagent netconf consul unum j2
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400153
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800154prod-containers: docker-base voltha ofagent netconf shovel dashd cli grafana consul tools golang envoyd envoy fluentd unum j2
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400155
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800156containers: docker-base voltha ofagent netconf shovel onos tester config-push dashd cli portainer grafana nginx consul tools golang envoyd envoy fluentd unum j2
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500157
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -0800158docker-base:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800159 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-base:${TAG} -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700160
Shad Ansari83777cb2017-06-02 14:56:08 -0700161voltha: voltha-adapters
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800162 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-voltha:${TAG} -f docker/Dockerfile.voltha .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800163
Shad Ansari83777cb2017-06-02 14:56:08 -0700164voltha-adapters:
165 make -C voltha/adapters/asfvolt16_olt
166
Zsolt Harasztidb892332017-01-09 11:08:38 -0800167ofagent:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800168 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-ofagent:${TAG} -f docker/Dockerfile.ofagent .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800169
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400170tools:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800171 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-tools:${TAG} -f docker/Dockerfile.tools .
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400172
sathishgb5d1c182017-07-13 14:20:19 +0530173fluentd:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800174 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-fluentd:${TAG} -f docker/Dockerfile.fluentd .
sathishgb5d1c182017-07-13 14:20:19 +0530175
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400176envoy:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800177 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-envoy:${TAG} -f docker/Dockerfile.envoy .
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400178
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400179envoyd:
Sergio Slobodrian6570c742017-08-07 23:11:33 -0400180 make -C envoy
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400181 make -C envoy/go/envoyd
182
183golang:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800184 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-go-builder:${TAG} -f envoy/go/golang-builder/Dockerfile ./envoy/go/golang-builder
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400185
Zsolt Harasztidb892332017-01-09 11:08:38 -0800186netconf:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800187 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-netconf:${TAG} -f docker/Dockerfile.netconf .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800188
Stephane Barbarie14088962017-06-01 16:56:55 -0400189netopeer:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800190 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-netopeer:${TAG} -f docker/Dockerfile.netopeer .
Stephane Barbarie14088962017-06-01 16:56:55 -0400191
Zsolt Harasztidb892332017-01-09 11:08:38 -0800192shovel:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800193 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-shovel:${TAG} -f docker/Dockerfile.shovel .
Zsolt Harasztidb892332017-01-09 11:08:38 -0800194
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500195dashd:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800196 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-dashd:${TAG} -f docker/Dockerfile.dashd .
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500197
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800198cli:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800199 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-cli:${TAG} -f docker/Dockerfile.cli .
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400200
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400201portainer:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800202 REGISTRY=${REGISTRY} REPOSITORY=${REPOSITORY} TAG=${TAG} portainer/buildPortainer.sh
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400203
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400204nginx:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800205 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-nginx:${TAG} -f docker/Dockerfile.nginx .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400206
schowdhury40739212017-06-12 07:40:31 -0700207consul:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800208 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-consul:${TAG} -f docker/Dockerfile.consul .
schowdhury40739212017-06-12 07:40:31 -0700209
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400210grafana:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800211 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-grafana:${TAG} -f docker/Dockerfile.grafana .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400212
Zsolt Harasztidb892332017-01-09 11:08:38 -0800213onos:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800214 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-onos:${TAG} -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800215
David K. Bainbridge215e0242017-09-05 23:18:24 -0700216unum:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800217 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-unum:${TAG} -f unum/Dockerfile ./unum
David K. Bainbridge215e0242017-09-05 23:18:24 -0700218
alshabib5e180572017-01-10 23:59:47 -0600219tester:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800220 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-tester:${TAG} -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600221
alshabiba5514082017-03-31 11:08:27 -0500222config-push:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800223 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-config-push:${TAG} -f docker/Dockerfile.configpush docker
alshabiba5514082017-03-31 11:08:27 -0500224
Stephane Barbarie95507c42017-09-19 10:41:04 -0400225opennms:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800226 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-opennms:${TAG} -f docker/Dockerfile.opennms .
Stephane Barbarie95507c42017-09-19 10:41:04 -0400227
228logstash:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800229 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-logstash:${TAG} -f docker/Dockerfile.logstash .
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800230
231j2:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800232 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-j2:${TAG} -f docker/Dockerfile.j2 docker
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800233
234start:
235 bash -c 'echo $$VOLTHA_LOGS && TMP_STACK_FILE=$$(mktemp -u) && \
236 echo $$TMP_STACK_FILE && \
237 SWARM_MANAGER_COUNT=$$(docker node ls | grep Ready | egrep "(Leader)|(Reachable)" | wc -l | sed -e "s/ //g") && \
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800238 cat ./compose/voltha-stack.yml.j2 2>&1 | docker run -e RADIUS_ROOT=$$RADIUS_ROOT -e CONSUL_ROOT=$$CONSUL_ROOT -e VOLTHA_LOGS=$$VOLTHA_LOGS -e SWARM_MANAGER_COUNT=$$SWARM_MANAGER_COUNT --rm -i ${REGISTRY}${REPOSITORY}voltha-j2:${TAG} - 2>&1 > $$TMP_STACK_FILE && \
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800239 docker stack deploy -c $$TMP_STACK_FILE voltha && \
240 rm -f $$TMP_STACK_FILE'
241
242stop:
243 docker stack rm voltha
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400244
David K. Bainbridge03ad7412018-01-19 16:41:38 -0800245tag: $(patsubst %,%.tag,$(DOCKER_IMAGE_LIST))
246
247push: tag $(patsubst %,%.push,$(DOCKER_IMAGE_LIST))
248
249pull: $(patsubst %,%.pull,$(DOCKER_IMAGE_LIST))
250
251%.tag:
252 docker tag ${REGISTRY}${REPOSITORY}voltha-$(subst .tag,,$@):${TAG} ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .tag,,$@):${TARGET_TAG}
253
254%.push:
255 docker push ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .push,,$@):${TARGET_TAG}
256
257%.pull:
258 docker pull ${REGISTRY}${REPOSITORY}voltha-$(subst .pull,,$@):${TAG}
259
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700260protos:
261 make -C voltha/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700262 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500263 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700264
265install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700266 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700267
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700268clean:
269 find voltha -name '*.pyc' | xargs rm -f
270
Nathan Knutha6b09e32016-09-21 16:26:09 -0700271distclean: clean
272 rm -rf ${VENVDIR}
273
khenaidoofe874ae2017-07-14 18:07:27 -0400274
275fetch-jenkins:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400276 docker pull consul:0.9.2
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800277 docker pull fluent/fluentd:v0.12.42
khenaidoofe874ae2017-07-14 18:07:27 -0400278 docker pull ubuntu:xenial
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500279 docker pull wurstmeister/kafka:1.0.0
280 docker pull zookeeper:3.4.11
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700281fetch:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400282 docker pull consul:0.9.2
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800283 docker pull fluent/fluentd:v0.12.42
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700284 docker pull ubuntu:xenial
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500285 docker pull wurstmeister/kafka:1.0.0
286 docker pull zookeeper:3.4.11
287 docker pull portainer/portainer:1.15.2
Sergio Slobodrianee417fa2017-08-11 09:34:50 -0400288 docker pull lyft/envoy:29361deae91575a1d46c7a21e913f19e75622ebe
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400289 docker pull registry:2
Sergio Slobodrian6f5fc4c2017-11-17 15:31:12 -0500290 docker pull kamon/grafana_graphite:3.0
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700291
292purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700293 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700294
295rebuild-venv: purge-venv venv
296
297venv: ${VENVDIR}/.built
298
299${VENVDIR}/.built:
300 @ virtualenv ${VENVDIR}
301 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700302 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700303 if ! pip install -r requirements.txt; \
304 then \
305 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
306 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700307 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700308 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700309 fi
310
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800311test: venv protos run-as-root-tests
312 @ echo "Executing all tests"
313 . ${VENVDIR}/bin/activate && \
314 nosetests -s tests \
315 --exclude-dir=./tests/itests/run_as_root/
316
Zsolt Haraszti66186622016-11-08 14:24:00 -0800317utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700318 @ echo "Executing all unit tests"
319 . ${VENVDIR}/bin/activate && \
Kim Kempf8c2812c2017-10-23 15:07:50 -0700320 for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; nosetests $$d; done
alshabib29a3ed52017-01-23 14:29:21 -0800321
322utest-with-coverage: venv protos
323 @ echo "Executing all unit tests and producing coverage results"
324 . ${VENVDIR}/bin/activate && \
Kim Kempf8c2812c2017-10-23 15:07:50 -0700325 for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; \
khenaidoo079a7762017-10-26 21:42:05 -0400326 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400327
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800328itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800329 @ echo "Executing all integration tests"
330 . ${VENVDIR}/bin/activate && \
331 nosetests -s \
332 tests/itests/docutests/build_md_test.py \
333 --exclude-dir=./tests/utests/ \
334 --exclude-dir=./tests/itests/run_as_root/
335
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800336smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800337 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800338 . ${VENVDIR}/bin/activate && \
339 nosetests -s \
340 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800341 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800342
khenaidoo1243ee92017-07-17 15:54:06 -0400343jenkins-test: venv
344 @ echo "Executing jenkins smoke tests"
345 . ${VENVDIR}/bin/activate && \
346 nosetests -s \
347 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
348 --exclude-dir=./tests/itests/run_as_root/
349
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800350
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800351run-as-root-tests:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800352 docker run -i --rm -v /cord/incubator/voltha:/voltha --privileged ${REGISTRY}${REPOSITORY}voltha-base:${TAG} env PYTHONPATH=/voltha python /voltha/tests/itests/run_as_root/test_frameio.py
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700353
354flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700355
356# end file