Skip to content

Commit aaed4af

Browse files
committed
fix quotes in NPM command when node is in .vaadin, improve logs
1 parent 82f97f3 commit aaed4af

8 files changed

+34
-31
lines changed

scripts/pit/its/cc-install-apps.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async function installApp(app, page) {
6464
await installApp(app, page);
6565
}
6666

67-
log(`Waiting for the applications to be available...\n`);
67+
log(`Waiting for 2 applications to be available...\n`);
6868
const selector = 'vaadin-grid-cell-content span[theme="badge success"]';
6969
await expect(page.locator(selector).nth(0)).toBeVisible({ timeout: 180000 });
7070
await takeScreenshot(page, __filename, 'app-1-available');

scripts/pit/its/cc-localization.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const { assert } = require('console');
7979
await run(`unzip -d ${downloadsDir} -o ${filePath}`);
8080
const str = await fs.readFileSync('./downloads/translations.properties', 'utf8');
8181
assert(str.includes('app.title=Panaderia'));
82-
await fs.rmdirSync(downloadsDir, { recursive: true });
82+
await fs.rmSync(downloadsDir, { recursive: true });
8383

8484
log(`Testing that preview page: ${previewUrl} is up and running\n`);
8585
await page.getByRole('button', { name: 'Start preview' }).click();

scripts/pit/its/cc-setup.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ const {log, run, args, createPage, closePage, takeScreenshot, waitForServerReady
3333

3434
await takeScreenshot(page, __filename, 'password-changed');
3535

36-
await page.getByLabel('First Name').fill(arg.login);
37-
await page.getByLabel('Last Name').fill(arg.login);
36+
await page.getByLabel('First Name').fill(arg.login.split('@')[0]);
37+
await page.getByLabel('Last Name').fill(arg.login.split('@')[1]);
3838
await page.getByRole('button', { name: 'Submit' }).click();
3939
await takeScreenshot(page, __filename, 'user-configured');
4040

scripts/pit/its/test-utils.js

+14-9
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ function log(...args) {
1414
function out(...args) {
1515
process.stderr.write(`\x1b[2m\x1b[196m${args}\x1b[0m`);
1616
}
17+
function warn(...args) {
18+
process.stderr.write(`\x1b[2m\x1b[91m${args}\x1b[0m`);
19+
}
1720
function err(...args) {
1821
process.stderr.write(`\x1b[0;31m${args}\x1b[0m`);
1922
}
@@ -63,7 +66,7 @@ async function createPage(headless, ignoreHTTPSErrors) {
6366
const context = await browser.newContext({ignoreHTTPSErrors: ignoreHTTPSErrors });
6467
const page = await context.newPage();
6568
page.on('console', msg => out("> CONSOLE:", (msg.text() + ' - ' + msg.location().url).replace(/\s+/g, ' '), '\n'));
66-
page.on('pageerror', e => err("> PAGEERROR:", ('' + e).replace(/\s+/g, ' '), '\n'));
69+
page.on('pageerror', e => warn("> JSERROR:", ('' + e).replace(/\s+/g, ' '), '\n'));
6770
page.browser = browser;
6871
return page;
6972
}
@@ -80,7 +83,7 @@ async function takeScreenshot(page, name, descr) {
8083
const file = `${screenshots}/${scr}-${cnt}-${descr}.png`;
8184
await page.waitForTimeout(1000);
8285
await page.screenshot({ path: file });
83-
out(`Screenshot taken: ${file}\n`);
86+
out(` 📸 Screenshot taken: ${file}\n`);
8487
}
8588

8689
// Wait for the server to be ready and to get a valid response
@@ -93,29 +96,31 @@ async function waitForServerReady(page, url, options = {}) {
9396
log(`Opening ${url}\n`);
9497
for (let attempt = 0; attempt < maxRetries; attempt++) {
9598
try {
96-
const response = await page.goto(url);
99+
const response = await page.goto(url, {timeou: 120000});
97100
// Check if the response status is not 503
98101
if (response && response.status() < 400) {
99-
out(`Attempt ${attempt} Server is ready and returned a valid response. ${response.status()}\n`);
102+
out(`Attempt ${attempt} Server is ready and returned a valid response. ${response.status()}\n`);
100103
return response;
101104
} else {
102-
out(`Attempt ${attempt} Server is not ready yet. ${response.status()}\n`);
105+
out(`Attempt ${attempt} Server is not ready yet. ${response.status()}\n`);
103106
}
104107
} catch (error) {
105108
if (error.message.includes('net::ERR_CERT_AUTHORITY_INVALID')) {
106-
err(`Attempt ${attempt} Server has not a valid certificate, install it for ${url} or use --notls flag\n`);
109+
err(`Attempt ${attempt} Server has not a valid certificate, install it for ${url} or use --notls flag\n`);
107110
} else {
108-
err(`Attempt ${attempt} Server failed with error: ${error.message}\n`);
111+
err(` ⏲ Attempt ${attempt} Server failed with error: ${error.message}\n`);
112+
}
113+
if (attempt >= 10) {
114+
throw new Error(`Server Error ${error}.\n`);
109115
}
110-
throw new Error(`Server Error ${error}.\n`);
111116
}
112117
await page.waitForTimeout(retryInterval);
113118
}
114119
throw new Error(`Server did not become ready after ${maxRetries} attempts.\n`);
115120
}
116121

117122
module.exports = {
118-
log, out, err,
123+
log, out, err, warn,
119124
run,
120125
args,
121126
createPage,

scripts/pit/lib/lib-ccenter.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ uninstallCC() {
7777
}
7878

7979
checkTls() {
80-
[ -n "$TEST" ] && return 0
80+
[ -n "$TEST" -o -n "$SKIPHELM" ] && return 0
8181
for i in `kubectl get ingresses -n $CC_NS | grep nginx | awk '{print $1}'`; do
8282
log "$i"
8383
H=`kubectl get ingress $i -n $CC_NS -o jsonpath='{.spec.rules[0].host}'`
@@ -90,6 +90,7 @@ checkTls() {
9090

9191
## Configure secrets for the control-center and the keycloak servers
9292
installTls() {
93+
[ -n "$SKIPHELM" ] && return 0
9394
[ -z "$CC_KEY" -o -z "$CC_CERT" ] && log "No CC_KEY and CC_CERT provided, skiping TLS installation" && return 0
9495
[ -n "$CC_FULL" ] && CC_CERT=$CC_FULL
9596
[ -z "$TEST" ] && log "Installing TLS $CC_TLS for $CC_CONTROL and $CC_AUT" || cmd "## Creating TLS file '$CC_DOMAIN.pem' from envs"

scripts/pit/lib/lib-k8s-kind.sh

+9-11
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,21 @@ hasSUID() {
3131
# $1: command
3232
setSuid() {
3333
isWindows && return 0
34-
for W in "/tmp/$1" `which "$1"`; do
35-
hasSUID "$W" && echo "$W" && alias kubectl="$W" && return 0
34+
T=/tmp/$1
35+
for W in "$T" `which "$1"`; do
36+
hasSUID "$W" && echo "$W" && return 0
3637
done
3738
R=`realpath $W` || return 1
38-
echo "$R"
3939

4040
sudo -n true >/dev/null 2>&1 || log "It's necessary to provide sudo password to run '$1' as root"
4141
sudo -B true || return 1
42-
sudo rm -f /tmp/$1
4342

4443
runCmd "$TEST" "Changing owner to root to: $R" "sudo chown root $R" \
45-
&& runCmd "$TEST" "Changing set-uid to: $R" "sudo chmod u+s $R" && return 0
44+
&& runCmd "$TEST" "Changing set-uid to: $R" "sudo chmod u+s $R" && echo "kubectl" && return 0
4645

47-
runCmd "$TEST" "Coping $R" "sudo cp $R /tmp/$1" \
48-
&& runCmd "$TEST" "Changing owner to root to: /tmp/$1" "sudo chown root /tmp/$1" \
49-
&& runCmd "$TEST" "Changing set-uid to: $R" "sudo chmod u+s /tmp/$1" && return 0
46+
runCmd "$TEST" "Coping $R" "sudo cp $R $T" \
47+
&& runCmd "$TEST" "Changing owner to root to: $T" "sudo chown root $T" \
48+
&& runCmd "$TEST" "Changing set-uid to: $R" "sudo chmod u+s $T" && echo "$T" && return 0
5049
}
5150

5251
##
@@ -58,13 +57,12 @@ startPortForward() {
5857
H=`getPids "kubectl port-forward $2"`
5958
[ -n "$H" ] && log "Already running k8s port-forward $1 $2 $3 -> $4 with pid $H" && return 0
6059
[ -z "$TEST" ] && log "Starting k8s port-forward $1 $2 $3 -> $4"
61-
[ "$4" -le 1024 ] && setSuid kubectl || return 1
60+
[ "$4" -le 1024 ] && K=`setSuid kubectl` || return 1
6261
bgf="k8s-port-forward-$3-$4.log"
6362
rm -f "$bgf"
64-
[ -x /tmp/kubectl ] && K=/tmp/kubectl || K=kubectl
6563
runInBackgroundToFile "$K port-forward $2 $4:$3 -n $1" "$bgf"
6664
sleep 2
67-
cat "$bgf" | egrep 'Forwarding from'
65+
egrep 'Forwarding from' "$bgf"
6866
}
6967

7068
##

scripts/pit/lib/lib-playwright.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ isInstalledPlaywright() {
1313
installPlaywright() {
1414
_pfile="playwright-"`uname`".out"
1515
_dir=`dirname "$1"`
16-
# @playwright/test
17-
(cd "$_dir" && runToFile "'${NPM}' install --no-audit @playwright/test" "$_pfile" "$VERBOSE") || return 1
16+
(cd "$_dir" && runToFile "$NPM install --no-audit @playwright/test" "$_pfile" "$VERBOSE") || return 1
1817
(cd "$_dir" && runToFile "npx playwright install chromium" "$_pfile" "$VERBOSE") || return 1
1918
isLinux && (cd "$_dir" && runToFile "'${NODE}' ./node_modules/.bin/playwright install-deps chromium" "$_pfile" "$VERBOSE") || true
2019
}
@@ -44,10 +43,10 @@ runPlaywrightTests() {
4443
PATH=$PATH runToFile "'$NODE' '$_test_file' $_args" "$_pfile" "$VERBOSE" true
4544
err=$?
4645
[ -n "$TEST" ] && return 0
47-
H=`grep '> CONSOLE:' "$_pfile" | perl -pe 's/(> CONSOLE: Received xhr.*?feat":).*/$1 .../g'`
46+
H=`grep ' > CONSOLE:' "$_pfile" | perl -pe 's/(> CONSOLE: Received xhr.*?feat":).*/$1 .../g'`
4847
H=`echo "$H" | egrep -v 'Atmosphere|Vaadin push loaded|Websocket successfully opened|Websocket closed|404.*favicon.ico'`
4948
[ -n "$H" ] && [ "$_mode" = "prod" ] && reportError "Console Warnings in $_mode mode $5" "$H" && echo "$H"
50-
H=`grep '> JSERROR:' "$_pfile"`
49+
H=`grep ' > JSERROR:' "$_pfile"`
5150
[ -n "$H" ] && reportError "Console Errors in $_msg" "$H" && echo "$H" && return 1
5251
H=`tail -15 $_pfile`
5352
[ $err != 0 ] && reportOutErrors "$_ofile" "Error ($err) running Visual-Test ("`basename $_pfile`")" || echo ">>>> PiT: playwright '$_test_file' done" >> $__file

scripts/pit/lib/lib-utils.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ computeNpm() {
167167
NPM=`which npm`
168168
NPX=`which npx`
169169
NODE=`which node`
170-
[ -x "$_VNODE/bin/node" -a -f "$_NPMJS" ] && export PATH="$_VNODE/bin:$PATH" && NODE="$_VNODE/bin/node" && NPM="'$NODE' $_NPMJS"
170+
[ -x "$_VNODE/bin/node" -a -f "$_NPMJS" ] && export PATH="$_VNODE/bin:$PATH" && NODE="$_VNODE/bin/node" && NPM="'$NODE' '$_NPMJS'"
171171
}
172172

173173
## Run a command, and shows a message explaining it
@@ -717,7 +717,7 @@ NODE=$NODE
717717
Java version: `java -version 2>&1`
718718
Node version: `"$NODE" --version`
719719
NPM=$NPM
720-
Npm version: `"$NPM" --version`
720+
Npm version: `eval $NPM --version`
721721
"
722722
}
723723

0 commit comments

Comments
 (0)