|
@@ -11,7 +11,7 @@ cover-ct: build clean
|
|
|
$i "Bootstrap a new OTP application named $(APP)"
|
|
|
$t mkdir $(APP)/
|
|
|
$t cp ../erlang.mk $(APP)/
|
|
|
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
|
|
|
$i "Generate a Common Test suite"
|
|
|
$t mkdir $(APP)/test
|
|
@@ -19,7 +19,7 @@ cover-ct: build clean
|
|
|
"-module($(APP)_SUITE)." \
|
|
|
"-export([all/0, ok/1])." \
|
|
|
"all() -> [ok]." \
|
|
|
- "ok(_) -> ok." > $(APP)/test/$(APP)_SUITE.erl
|
|
|
+ "ok(_) -> application:start($(APP))." > $(APP)/test/$(APP)_SUITE.erl
|
|
|
|
|
|
$i "Run Common Test with code coverage enabled"
|
|
|
$t $(MAKE) -C $(APP) ct COVER=1 $v
|
|
@@ -33,6 +33,123 @@ cover-ct: build clean
|
|
|
$t test ! -e $(APP)/cover/ct.coverdata
|
|
|
$t test ! -e $(APP)/test/ct.cover.spec
|
|
|
|
|
|
+cover-ct-incl-apps: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Create a new application app_one"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_one $v
|
|
|
+
|
|
|
+ $i "Create a new application app_two"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_two $v
|
|
|
+
|
|
|
+ $i "Create a new application app_three"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_three $v
|
|
|
+
|
|
|
+ $i "Add all three apps to LOCAL_DEPS"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "LOCAL_DEPS = app_one app_two app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add all three apps to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tapp_one,\n\t\tapp_two,\n\t\tapp_three,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Add app_one and app_three to the code coverage"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "COVER_APPS = app_one app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ $i "Generate a Common Test suite"
|
|
|
+ $t mkdir $(APP)/test
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP)_SUITE)." \
|
|
|
+ "-export([all/0, ok/1])." \
|
|
|
+ "all() -> [ok]." \
|
|
|
+ "ok(_) -> application:ensure_all_started($(APP))." > $(APP)/test/$(APP)_SUITE.erl
|
|
|
+
|
|
|
+ $i "Run Common Test with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) ct COVER=1 $v
|
|
|
+
|
|
|
+ $i "Check that app_one and app_three were covered, but app_two wasn't"
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/app_one_app.COVER.html
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/app_three_app.COVER.html
|
|
|
+ $t ! test -e $(APP)/logs/ct_run.*/app_two_app.COVER.html
|
|
|
+
|
|
|
+cover-ct-incl-apps-default: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Create a new application app_one"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_one $v
|
|
|
+
|
|
|
+ $i "Create a new application app_two"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_two $v
|
|
|
+
|
|
|
+ $i "Create a new application app_three"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_three $v
|
|
|
+
|
|
|
+ $i "Add all three apps to LOCAL_DEPS"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "LOCAL_DEPS = app_one app_two app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add all three apps to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tapp_one,\n\t\tapp_two,\n\t\tapp_three,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Generate a Common Test suite"
|
|
|
+ $t mkdir $(APP)/test
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP)_SUITE)." \
|
|
|
+ "-export([all/0, ok/1])." \
|
|
|
+ "all() -> [ok]." \
|
|
|
+ "ok(_) -> application:ensure_all_started($(APP))." > $(APP)/test/$(APP)_SUITE.erl
|
|
|
+
|
|
|
+ $i "Run Common Test with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) ct COVER=1 $v
|
|
|
+
|
|
|
+ $i "Check that all apps were covered by default"
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/app_one_app.COVER.html
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/app_two_app.COVER.html
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/app_three_app.COVER.html
|
|
|
+
|
|
|
+cover-ct-incl-deps: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Add Cowboy 1.0.0 to the list of dependencies"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowboy\ndep_cowboy_commit = 1.0.0\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add Cowboy to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tcowboy,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Add Cowboy and Cowlib to the code coverage"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "COVER_DEPS = cowboy cowlib\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ $i "Generate a Common Test suite"
|
|
|
+ $t mkdir $(APP)/test
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP)_SUITE)." \
|
|
|
+ "-export([all/0, ok/1])." \
|
|
|
+ "all() -> [ok]." \
|
|
|
+ "ok(_) -> application:ensure_all_started($(APP))." > $(APP)/test/$(APP)_SUITE.erl
|
|
|
+
|
|
|
+ $i "Run Common Test with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) ct COVER=1 $v
|
|
|
+
|
|
|
+ $i "Check that Cowboy and Cowlib were covered, but Ranch wasn't"
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/cowboy_app.COVER.html
|
|
|
+ $t test -f $(APP)/logs/ct_run.*/cow_http_hd.COVER.html
|
|
|
+ $t ! test -e $(APP)/logs/ct_run.*/ranch_app.COVER.html
|
|
|
+
|
|
|
cover-custom-dir: build clean
|
|
|
|
|
|
$i "Bootstrap a new OTP application named $(APP)"
|
|
@@ -141,6 +258,132 @@ cover-eunit-apps-only: build clean
|
|
|
$i "Check that the generated file exists"
|
|
|
$t test -f $(APP)/apps/my_app/cover/eunit.coverdata
|
|
|
|
|
|
+cover-eunit-incl-apps: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Create a new application app_one"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_one $v
|
|
|
+
|
|
|
+ $i "Create a new application app_two"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_two $v
|
|
|
+
|
|
|
+ $i "Create a new application app_three"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_three $v
|
|
|
+
|
|
|
+ $i "Add all three apps to LOCAL_DEPS"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "LOCAL_DEPS = app_one app_two app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add all three apps to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tapp_one,\n\t\tapp_two,\n\t\tapp_three,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Add app_one and app_three to the code coverage"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "COVER_APPS = app_one app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ $i "Generate a module containing EUnit tests"
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP))." \
|
|
|
+ "-ifdef(TEST)." \
|
|
|
+ "-include_lib(\"eunit/include/eunit.hrl\")." \
|
|
|
+ "ok_test() -> application:ensure_all_started($(APP))." \
|
|
|
+ "-endif." > $(APP)/src/$(APP).erl
|
|
|
+
|
|
|
+ $i "Run EUnit with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) eunit COVER=1 $v
|
|
|
+
|
|
|
+ $i "Build the cover report"
|
|
|
+ $t $(MAKE) -C $(APP) cover-report $v
|
|
|
+
|
|
|
+ $i "Check that app_one and app_three were covered, but app_two wasn't"
|
|
|
+ $t test -f $(APP)/cover/app_one_app.COVER.html
|
|
|
+ $t test -f $(APP)/cover/app_three_app.COVER.html
|
|
|
+ $t ! test -e $(APP)/cover/app_two_app.COVER.html
|
|
|
+
|
|
|
+cover-eunit-incl-apps-default: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Create a new application app_one"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_one $v
|
|
|
+
|
|
|
+ $i "Create a new application app_two"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_two $v
|
|
|
+
|
|
|
+ $i "Create a new application app_three"
|
|
|
+ $t $(MAKE) -C $(APP) new-app in=app_three $v
|
|
|
+
|
|
|
+ $i "Add all three apps to LOCAL_DEPS"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "LOCAL_DEPS = app_one app_two app_three\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add all three apps to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tapp_one,\n\t\tapp_two,\n\t\tapp_three,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Generate a module containing EUnit tests"
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP))." \
|
|
|
+ "-ifdef(TEST)." \
|
|
|
+ "-include_lib(\"eunit/include/eunit.hrl\")." \
|
|
|
+ "ok_test() -> application:ensure_all_started($(APP))." \
|
|
|
+ "-endif." > $(APP)/src/$(APP).erl
|
|
|
+
|
|
|
+ $i "Run EUnit with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) eunit COVER=1 $v
|
|
|
+
|
|
|
+ $i "Build the cover report"
|
|
|
+ $t $(MAKE) -C $(APP) cover-report $v
|
|
|
+
|
|
|
+ $i "Check that all apps were covered by default"
|
|
|
+ $t test -f $(APP)/cover/app_one_app.COVER.html
|
|
|
+ $t test -f $(APP)/cover/app_two_app.COVER.html
|
|
|
+ $t test -f $(APP)/cover/app_three_app.COVER.html
|
|
|
+
|
|
|
+cover-eunit-incl-deps: build clean
|
|
|
+
|
|
|
+ $i "Bootstrap a new OTP application named $(APP)"
|
|
|
+ $t mkdir $(APP)/
|
|
|
+ $t cp ../erlang.mk $(APP)/
|
|
|
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap $v
|
|
|
+
|
|
|
+ $i "Add Cowboy 1.0.0 to the list of dependencies"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowboy\ndep_cowboy_commit = 1.0.0\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ifdef LEGACY
|
|
|
+ $i "Add Cowboy to the applications key in the .app.src file"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==7) {print "\t\tcowboy,\n"}' $(APP)/src/$(APP).app.src
|
|
|
+endif
|
|
|
+
|
|
|
+ $i "Add Cowboy and Cowlib to the code coverage"
|
|
|
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "COVER_DEPS = cowboy cowlib\n"}' $(APP)/Makefile
|
|
|
+
|
|
|
+ $i "Generate a module containing EUnit tests"
|
|
|
+ $t printf "%s\n" \
|
|
|
+ "-module($(APP))." \
|
|
|
+ "-ifdef(TEST)." \
|
|
|
+ "-include_lib(\"eunit/include/eunit.hrl\")." \
|
|
|
+ "ok_test() -> application:ensure_all_started($(APP))." \
|
|
|
+ "-endif." > $(APP)/src/$(APP).erl
|
|
|
+
|
|
|
+ $i "Run EUnit with code coverage enabled"
|
|
|
+ $t $(MAKE) -C $(APP) eunit COVER=1 $v
|
|
|
+
|
|
|
+ $i "Build the cover report"
|
|
|
+ $t $(MAKE) -C $(APP) cover-report $v
|
|
|
+
|
|
|
+ $i "Check that Cowboy and Cowlib were covered, but Ranch wasn't"
|
|
|
+ $t test -f $(APP)/cover/cowboy_app.COVER.html
|
|
|
+ $t test -f $(APP)/cover/cow_http_hd.COVER.html
|
|
|
+ $t ! test -e $(APP)/cover/ranch_app.COVER.html
|
|
|
+
|
|
|
cover-proper: build clean
|
|
|
|
|
|
$i "Bootstrap a new OTP application named $(APP)"
|