blob: f566f1066b808b11f69d18c9acb0ba3995773acd [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 Condon49e15be2018-05-16 16:58:29 +010065 + 'ng build --preserve-symlinks --base-href /onos/ui2/dist/ --deploy-url /onos/ui2/dist/ --output-path="$OUT" 2>&1',
Sean Condon83fc39f2018-04-19 18:56:13 +010066 out = 'dist',
67 visibility = [ 'PUBLIC' ],
68)
69
Sean Condon49e15be2018-05-16 16:58:29 +010070genrule(
71 name = 'onos-web-gui2-test',
72 srcs = [],
73 bash =
74 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
75 + 'ORIGPATH="$SRCDIR";'
76 + 'ORIGOUTPUT=\$(echo $ORIGPATH|cut -d\'_\' -f 1 );'
77 + 'cd $(location :onos-web-gui2-build)/../../onos-web-gui2-build__srcs;'
78 # The sym linked karma.conf.js will mean that 'karma-jasmine' won't be found
79 + 'cp karma.conf.js karma.conflocal.js;'
80 + 'pwd > "$OUT";'
81 + 'npm5 -v >> "$OUT";'
82 + 'ng -v >> "$OUT";'
83 + 'if [ -f /usr/bin/chromium-browser ]; then export CHROME_BIN=/usr/bin/chromium-browser; fi;'
84 + 'echo $CHROME_BIN >> "$OUT";'
85 # No point using PhantonJS as the browser because it's not compatible with ES6
86 # Install either chrome or chromium-browser on the machine
87 + 'ng test --preserve-symlinks --karma-config=karma.conflocal.js --code-coverage --browsers=ChromeHeadless --watch=false >> "$OUT" 2>&1 || '
88 + 'if [ $? -eq 0 ]; then echo "Successfully ran tests";'
89 + 'else echo "Error running \'ng test\' on \'//web/gui2:onos-web-gui2-test\'. See $ORIGOUTPUT/onos-web-gui2-test-log.txt for more details" >&2;'
90 + 'tail -n 100 $ORIGOUTPUT/onos-web-gui2-test-log.txt >&2;'
91 + 'fi;',
92 out = 'onos-web-gui2-test-log.txt',
93)
94
95genrule(
96 name = 'onos-web-gui2-lint',
97 srcs = [],
98 bash =
99 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
100 + 'cd $(location :onos-web-gui2-build)/../../onos-web-gui2-build__srcs;'
101 + 'pwd > "$OUT";'
102 + 'npm5 -v >> "$OUT";'
103 + 'ng -v >> "$OUT";'
104 + 'ng lint >> "$OUT"',
105 out = 'onos-web-gui2-lint-log.txt',
106)
107
108genrule(
109 name = 'onos-web-gui2-compodoc',
110 srcs = [],
111 bash =
112 'export PATH=$(location :node-bin-' + NODE_VERSION + ')/bin:$PATH; '
113 + 'cd $(location :onos-web-gui2-build) && cd ../.. && cd onos-web-gui2-build__srcs;'
114 + 'pwd;'
115 + 'npm5 -v;'
116 + 'npm5 install -g @compodoc/compodoc 2>&1;'
117 + 'npm5 run compodoc -- -V;'
118# TODO This does not pick up on sym linked files - issue raised with authors
119 + 'npm5 run compodoc -- -d "$OUT"',
120 out = 'documentation',
121)
122
Sean Condon83fc39f2018-04-19 18:56:13 +0100123osgi_jar_with_tests (
124 name = 'onos-gui2',
125 deps = COMPILE_DEPS,
126 test_deps = TEST_DEPS,
Sean Condon49e15be2018-05-16 16:58:29 +0100127 resources = [
128 ':onos-web-gui2-build'
129 ],
Sean Condon83fc39f2018-04-19 18:56:13 +0100130 resources_root = '.',
Sean Condon49e15be2018-05-16 16:58:29 +0100131 test_resources = [
132 ':onos-web-gui2-test',
133 ':onos-web-gui2-lint'
134 ],
135 test_resources_root = '.',
Sean Condon83fc39f2018-04-19 18:56:13 +0100136 web_context = '/onos/ui2',
137 do_javadocs = False,
138)
Sean Condon49e15be2018-05-16 16:58:29 +0100139
140onos_app (
141 title = 'ONOS GUI v2 Application',
142 category = 'GUI',
143 url = 'http://onosproject.org',
144 description = 'ONOS GUI v2 based on Angular 6',
145 included_bundles = ['//web/gui2:onos-gui2'],
146)