blob: 94c492ef6b786637b0de7470794e4ed620705894 [file] [log] [blame]
Sean Condon49e15be2018-05-16 16:58:29 +01001NODE_VERSION = "v8.11.1"
Sean Condon83fc39f2018-04-19 18:56:13 +01002
3COMPILE_DEPS = [
4 '//lib:CORE_DEPS',
5 '//lib:JACKSON',
6 '//lib:KRYO',
7 '//lib:javax.ws.rs-api',
8 '//lib:servlet-api',
9 '//lib:jetty-websocket',
10 '//lib:jetty-util',
11 '//lib:jersey-media-multipart',
12 '//lib:org.apache.karaf.shell.console',
13 '//cli:onos-cli',
14 '//lib:jersey-server',
15 '//incubator/api:onos-incubator-api',
16 '//incubator/net:onos-incubator-net',
17 '//utils/rest:onlab-rest',
18 '//core/store/serializers:onos-core-serializers',
Sean Condon49e15be2018-05-16 16:58:29 +010019 ':node-release-' + NODE_VERSION,
20 ':node-bin-' + NODE_VERSION,
Sean Condon83fc39f2018-04-19 18:56:13 +010021 '//web/gui2:onos-web-gui2-build',
22]
23
24TEST_DEPS = [
25 '//lib:TEST',
26 '//core/api:onos-api-tests',
27 '//drivers/default:onos-drivers-default',
28]
29
30include_defs('//bucklets/node.bucklet')
31
Sean Condon49e15be2018-05-16 16:58:29 +010032fetch_node(version = NODE_VERSION)
Sean Condon83fc39f2018-04-19 18:56:13 +010033
34genrule(
35 name = 'onos-web-gui2-build',
36 srcs = glob([
Yuta HIGUCHI2ff911b2018-05-22 14:33:43 -070037 '**/*.json',
Sean Condon83fc39f2018-04-19 18:56:13 +010038 'src/main/webapp/**/*.ts',
39 'src/main/webapp/**/*.html',
40 'src/main/webapp/**/*.css',
Sean Condon49e15be2018-05-16 16:58:29 +010041 'src/main/webapp/**/*.png',
42 '*.js',
43 'e2e/**/*'
Sean Condon83fc39f2018-04-19 18:56:13 +010044 ], excludes = [
45 'dist/**/*',
46 'node_modules/**/*',
47 'src/main/webapp/dist/**/*'
48 ]),
49 bash =
50#To avoid any older 'NodeJS' installations it is necessary to use only the one
51# associated with this project - Angular 6 won't work on older releases
Sean Condon49e15be2018-05-16 16:58:29 +010052 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
Sean Condon83fc39f2018-04-19 18:56:13 +010053 + 'echo $PATH;'
Sean Condon49e15be2018-05-16 16:58:29 +010054 + '$(location :node-bin-' + NODE_VERSION + ')/bin/node -v;'
55 + 'ORIGPATH="$SRCDIR";'
56 + 'cd $(location :node-bin-' + NODE_VERSION + ')/bin &&'
Sean Condon83fc39f2018-04-19 18:56:13 +010057 + 'ln -sf ../lib/node_modules/npm/bin/npm-cli.js npm5 &&'
58 + 'cd $ORIGPATH &&'
59# The symlink to npm is not always created properly by the BUCK job that
60# untars it. It's safer to have our own symlink 'npm5'
61 + 'npm5 -v;'
62 + 'npm5 install -g @angular/cli@6.0.0 2>&1;'
Sean Condon83fc39f2018-04-19 18:56:13 +010063 + 'npm5 install 2>&1;'
64 + 'ng -v;'
Sean Condona00bf382018-06-23 07:54:01 +010065# Build it in production mode - optimization is turned off because of Angular CLI 6.0.x bug https://github.com/angular/angular-cli/issues/7799
66 + 'ng build --extract-css --prod --optimization=false --preserve-symlinks --base-href /onos/ui2/dist/ --deploy-url /onos/ui2/dist/ --output-path="$OUT" 2>&1',
Sean Condon83fc39f2018-04-19 18:56:13 +010067 out = 'dist',
68 visibility = [ 'PUBLIC' ],
69)
70
Sean Condon49e15be2018-05-16 16:58:29 +010071genrule(
72 name = 'onos-web-gui2-test',
73 srcs = [],
74 bash =
75 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
76 + 'ORIGPATH="$SRCDIR";'
77 + 'ORIGOUTPUT=\$(echo $ORIGPATH|cut -d\'_\' -f 1 );'
78 + 'cd $(location :onos-web-gui2-build)/../../onos-web-gui2-build__srcs;'
79 # The sym linked karma.conf.js will mean that 'karma-jasmine' won't be found
80 + 'cp karma.conf.js karma.conflocal.js;'
81 + 'pwd > "$OUT";'
82 + 'npm5 -v >> "$OUT";'
83 + 'ng -v >> "$OUT";'
84 + 'if [ -f /usr/bin/chromium-browser ]; then export CHROME_BIN=/usr/bin/chromium-browser; fi;'
85 + 'echo $CHROME_BIN >> "$OUT";'
86 # No point using PhantonJS as the browser because it's not compatible with ES6
87 # Install either chrome or chromium-browser on the machine
88 + 'ng test --preserve-symlinks --karma-config=karma.conflocal.js --code-coverage --browsers=ChromeHeadless --watch=false >> "$OUT" 2>&1 || '
89 + 'if [ $? -eq 0 ]; then echo "Successfully ran tests";'
Sean Condon83775682018-05-27 18:59:59 +010090 + 'else '
91 + ' if grep -q CHROME_BIN $ORIGOUTPUT/onos-web-gui2-test-log.txt ; then '
92 + ' echo "Warning: Step onos-web-gui2-test (test of Angular code) skipped because no binary for ChromeHeadless browser was found on your platform." >&2;'
93 + ' echo "Install Google Chrome or Chromium Browser to allow this step to run." >&2;'
94 + ' else '
95 + ' echo "Error running \'ng test\' on \'//web/gui2:onos-web-gui2-test\'. See $ORIGOUTPUT/onos-web-gui2-test-log.txt for more details" >&2;'
96 + ' tail -n 100 $ORIGOUTPUT/onos-web-gui2-test-log.txt >&2;'
97 + ' fi;'
Sean Condon49e15be2018-05-16 16:58:29 +010098 + 'fi;',
99 out = 'onos-web-gui2-test-log.txt',
100)
101
102genrule(
103 name = 'onos-web-gui2-lint',
104 srcs = [],
105 bash =
106 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
107 + 'cd $(location :onos-web-gui2-build)/../../onos-web-gui2-build__srcs;'
108 + 'pwd > "$OUT";'
109 + 'npm5 -v >> "$OUT";'
110 + 'ng -v >> "$OUT";'
111 + 'ng lint >> "$OUT"',
112 out = 'onos-web-gui2-lint-log.txt',
113)
114
115genrule(
116 name = 'onos-web-gui2-compodoc',
117 srcs = [],
118 bash =
119 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
120 + 'cd $(location :onos-web-gui2-build) && cd ../.. && cd onos-web-gui2-build__srcs;'
121 + 'pwd;'
122 + 'npm5 -v;'
123 + 'npm5 install -g @compodoc/compodoc 2>&1;'
124 + 'npm5 run compodoc -- -V;'
125# TODO This does not pick up on sym linked files - issue raised with authors
126 + 'npm5 run compodoc -- -d "$OUT"',
127 out = 'documentation',
128)
129
Sean Condon83fc39f2018-04-19 18:56:13 +0100130osgi_jar_with_tests (
131 name = 'onos-gui2',
132 deps = COMPILE_DEPS,
133 test_deps = TEST_DEPS,
Sean Condon49e15be2018-05-16 16:58:29 +0100134 resources = [
135 ':onos-web-gui2-build'
136 ],
Sean Condon83fc39f2018-04-19 18:56:13 +0100137 resources_root = '.',
Sean Condon49e15be2018-05-16 16:58:29 +0100138 test_resources = [
139 ':onos-web-gui2-test',
140 ':onos-web-gui2-lint'
141 ],
142 test_resources_root = '.',
Sean Condon83fc39f2018-04-19 18:56:13 +0100143 web_context = '/onos/ui2',
144 do_javadocs = False,
145)
Sean Condon49e15be2018-05-16 16:58:29 +0100146
147onos_app (
148 title = 'ONOS GUI v2 Application',
149 category = 'GUI',
150 url = 'http://onosproject.org',
151 description = 'ONOS GUI v2 based on Angular 6',
152 included_bundles = ['//web/gui2:onos-gui2'],
153)