2017-01-27 12:17:50 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e -o pipefail
|
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
2017-11-18 15:26:33 -05:00
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
|
|
|
2017-08-03 18:18:55 -04:00
|
|
|
# Track payload size functions
|
|
|
|
source ../scripts/ci/payload-size.sh
|
|
|
|
|
2017-02-10 19:23:44 -05:00
|
|
|
# Workaround https://github.com/yarnpkg/yarn/issues/2165
|
|
|
|
# Yarn will cache file://dist URIs and not update Angular code
|
|
|
|
readonly cache=.yarn_local_cache
|
|
|
|
function rm_cache {
|
|
|
|
rm -rf $cache
|
|
|
|
}
|
|
|
|
rm_cache
|
|
|
|
mkdir $cache
|
|
|
|
trap rm_cache EXIT
|
|
|
|
|
2018-01-31 14:21:06 -05:00
|
|
|
for testDir in $(ls | grep -Ev 'node_modules|render3') ; do
|
2017-01-27 12:17:50 -05:00
|
|
|
[[ -d "$testDir" ]] || continue
|
|
|
|
echo "#################################"
|
|
|
|
echo "Running integration test $testDir"
|
|
|
|
echo "#################################"
|
|
|
|
(
|
|
|
|
cd $testDir
|
2017-08-03 18:18:55 -04:00
|
|
|
rm -rf dist
|
2017-02-10 19:23:44 -05:00
|
|
|
yarn install --cache-folder ../$cache
|
2017-02-09 12:08:16 -05:00
|
|
|
yarn test || exit 1
|
2018-01-25 19:43:29 -05:00
|
|
|
# Track payload size for cli-hello-world and hello_world__closure and the render3 tests
|
|
|
|
if [[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__closure ]] || [[ $testDir == hello_world__render3__closure ]] || [[ $testDir == hello_world__render3__rollup ]] || [[ $testDir == hello_world__render3__cli ]]; then
|
|
|
|
if [[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__render3__cli ]]; then
|
2017-08-03 18:18:55 -04:00
|
|
|
yarn build
|
|
|
|
fi
|
2018-01-16 10:09:59 -05:00
|
|
|
if [[ -v TRAVIS ]]; then
|
|
|
|
trackPayloadSize "$testDir" "dist/*.js" true false "${thisDir}/_payload-limits.json"
|
|
|
|
fi
|
2017-08-03 18:18:55 -04:00
|
|
|
fi
|
2018-01-25 19:43:29 -05:00
|
|
|
if [[ -v TRAVIS ]]; then
|
|
|
|
# remove the temporary node modules directory to save space.
|
|
|
|
rm -rf node_modules
|
|
|
|
fi
|
2017-01-27 12:17:50 -05:00
|
|
|
)
|
|
|
|
done
|
2017-08-03 18:18:55 -04:00
|
|
|
|
2018-01-16 10:09:59 -05:00
|
|
|
if [[ -v TRAVIS ]]; then
|
|
|
|
trackPayloadSize "umd" "../dist/packages-dist/*/bundles/*.umd.min.js" false false
|
|
|
|
fi
|