Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testSerialConsole fails on XTerm.js crash: Cannot read property 'dimensions' of undefined #9641

Closed
martinpitt opened this issue Jul 11, 2018 · 21 comments

Comments

@martinpitt
Copy link
Member

Since last night test/verify/check-machines TestMachines.testSerialConsole consistently fails on CI like this:

Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true

This happens on every OS and every PR. It is most likely triggered by landing the throttling patches, as this introduced subtle timing differences - although these by themselves don't (or shouldn't) break this particular behaviour. The test succeeds locally for both @stefwalter and me.

The screenshot shows an oops. In #9639 I was able to expose that properly, and now it fails more meaningfully:

Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 770, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined
    at t.value (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:39420:66)
    at t.value (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:39414:29)
    at t.value (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:39362:73)
    at E (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:555:46)
    at P (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:571:18)
    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:1035:21)
    at I (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:617:62)
    at R.updateComponent (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:996:17)
    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:991:85)
    at b (http://127.0.0.2:9691/cockpit/$cc054f3e8f7b5502a050e87c2a638ab986b32d17204453ec8b43e171639feeae/machines/machines.js:521:85)

Our own code doesn't actually access any .dimensions property anywhere; this comes from the PatternFly react-console, in particular the addMinWidth() function. Obviously this.state.terminal.renderer is null or undefined. This sort of makes sense, as in that test it happens after clicking the "Disconnect" button.

@martinpitt
Copy link
Member Author

I tried to disconnect and reconnect in rapid succession in an interactive browser, and don't get this exception. It just works fine. On disconnect the whole <div.terminal> disappears as expected. Notably the screenshot in the failing tests still shows it, so apparently the disconnect button did not work - very likely because of that exact dimensions exception.

stefwalter added a commit to stefwalter/patternfly-react that referenced this issue Jul 12, 2018
There is a race condition, where during disconnection, certain
events can cause addMinWidth to dereference a null renderer object.
And we see an error like:

     Cannot read property 'dimensions' of undefined

This has happened reproducibly in Cockpit's integration testing. See:

cockpit-project/cockpit#9641
@stefwalter
Copy link
Contributor

Submitted this pull request: patternfly/patternfly-react#471

@martinpitt Any ideas on how to test this?

@stefwalter
Copy link
Contributor

I'm fine with treating this as a known issue, until such a time as it is fixed.

martinpitt added a commit to martinpitt/cockpit that referenced this issue Jul 12, 2018
@martinpitt
Copy link
Member Author

@stefwalter : I sent PR #9650 to test it. It's an utter hack of course, so not sure if we actually want to land this. But it should at least tell us if that fix works and if it's sufficient.

@martinpitt martinpitt changed the title testSerialConsole started failing testSerialConsole fails on XTerm.js crash: Cannot read property 'dimensions' of undefined Jul 12, 2018
martinpitt added a commit to martinpitt/cockpit that referenced this issue Jul 12, 2018
@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/ubuntu-1604
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/093911.750641:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10074/devtools/browser/3b95e645-3b05-446d-9fe2-7bc59bf4efde
[0712/093911.779292:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 132687: Permission denied (13)
[0712/093911.914114:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 132732: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531388352866.85, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '132732.8'}

not ok 35 testSerialConsole (check_machines.TestMachines) # duration: 101s

First occurrence: 2018-07-12T09:40:17.614674 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/130132.698091:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9660/devtools/browser/fe55a38b-fb84-4368-bd43-5d39bc0b33dc
[0712/130132.726547:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 309052: Permission denied (13)
[0712/130132.871300:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 309079: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531400493684.34, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '309079.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-12T13:02:38.782182 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:02:38.782182 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/131428.510190:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9366/devtools/browser/61871477-5d6f-430e-a01a-3963288be081
[0712/131428.537773:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 328274: Permission denied (13)
[0712/131428.735158:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 328299: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531401269577.96, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '328299.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T13:15:34.464572 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/140623.228373:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9880/devtools/browser/b2d26aec-a7c8-4169-a668-82a4c8e15005
[0712/140623.255149:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 32515: Permission denied (13)
[0712/140623.447826:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 32541: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531404384166.76, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '32541.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T14:07:30.064692 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T14:07:30.064692 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/150839.790009:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9797/devtools/browser/3ff7c47c-442c-4569-9081-05ea716b6ec5
[0712/150839.816805:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 32518: Permission denied (13)
[0712/150840.016712:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 32543: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2801-FAIL.log
[0100/000000.558457:ERROR:broker_posix.cc(102)] Error sending sync broker message: Broken pipe (32)
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531408120796.32, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '32543.8'}

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 102s

First occurrence: 2018-07-12T15:09:46.388300 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:09:46.388300 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/151348.084880:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9350/devtools/browser/d53fdf88-6a2f-4ac9-b71f-8a5ee419fb8d
[0712/151348.130931:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 33215: Permission denied (13)
[0712/151348.377354:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 33242: Permission denied (13)
CDP: {"source":"network","level":"error","text":"Failed to load resource: the server responded with a status of 404 (Not Found)","timestamp":1531408437301.78,"url":"http://127.0.0.2:9591/cockpit/$3ccc1e0663fe8cf9e47967c983042068df36c4319b68fd38f5048ba29fd5aeea/machines/base.css","networkRequestId":"33242.108"}
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531408429848.75, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '33242.8'}
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 404 (Not Found)', 'timestamp': 1531408437301.78, 'url': 'http://127.0.0.2:9591/cockpit/$3ccc1e0663fe8cf9e47967c983042068df36c4319b68fd38f5048ba29fd5aeea/machines/base.css', 'networkRequestId': '33242.108'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 123s

First occurrence: 2018-07-12T15:14:59.084630 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:14:59.084630 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/164709.911021:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9667/devtools/browser/5cdf7832-6e77-460f-961b-7feb95f7ca1e
[0712/164709.939146:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 125368: Permission denied (13)
[0712/164710.204447:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 125397: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531414030801.38, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '125397.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 105s

First occurrence: 2018-07-12T16:48:16.475825 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T16:48:16.475825 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/220455.064998:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10133/devtools/browser/9c0c69a9-4982-4f3f-b97f-cd78f9583733
[0712/220455.092998:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 93531: Permission denied (13)
[0712/220455.219732:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 93556: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531433095725.81, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '93556.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T22:06:01.364056 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0713/062839.273312:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9772/devtools/browser/13008be6-48e8-4546-96ab-bdc478858378
[0713/062839.312295:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 475265: Permission denied (13)
[0713/062839.486880:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 475292: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-1604-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531463320115.3, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '475292.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 104s

First occurrence: 2018-07-13T06:29:46.401081 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
dpkg: warning: ignoring request to remove libvirt-dbus which isn't installed
[0922/215848.411343:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9591/devtools/browser/c57567c0-776e-4814-965d-1406ad598c1a
[0922/215848.434904:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 24268: Permission denied (13)
[0922/215848.643081:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 24293: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9491/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…081c8a8201eaadc8f5dd/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-ubuntu-1604-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 38s

First occurrence: 2018-09-22T22:00:06.862213 | revision 2ed67fd
Times recorded: 1
Latest occurrences:

  • 2018-09-22T22:00:06.862213 | revision 2ed67fd

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/fedora-i386
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/094145.541119:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9589/devtools/browser/29754831-1333-46c0-9b26-e1df35bcc03a
[0712/094145.568600:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 250879: Permission denied (13)
[0712/094145.784425:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 250904: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531388506563.99, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '250904.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T09:42:57.650491 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/125349.612794:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9850/devtools/browser/c6b3b40b-c256-46aa-a9d8-bfa2541b4357
[0712/125349.641212:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 35533: Permission denied (13)
[0712/125349.774158:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 35558: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531400031097.47, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '35558.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T12:55:00.902031 | revision 3096616, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/125811.252050:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9893/devtools/browser/5d4c07f4-1478-4f2b-bceb-c0738a4d4ded
[0712/125811.276456:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 267021: Permission denied (13)
[0712/125811.425301:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 267048: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531400292229.3, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '267048.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 92s

First occurrence: 2018-07-12T12:59:24.878974 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T12:59:24.878974 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/140016.626504:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9642/devtools/browser/227c9296-7b6f-42dd-93f5-0e78c156fa7a
[0712/140016.654073:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 37980: Permission denied (13)
[0712/140016.849931:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38010: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531404018234.98, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '38010.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T14:01:28.328188 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T14:01:28.328188 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/151748.600463:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9953/devtools/browser/c7ad8762-91cf-4b33-ad75-4260201277ca
[0712/151748.627318:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38325: Permission denied (13)
[0712/151748.762606:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38351: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531408669526.83, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '38351.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T15:19:00.536276 | revision 3096616, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/154032.794284:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9794/devtools/browser/b57a15b5-d072-4ab6-9d49-fb690bfc90ee
[0712/154032.837682:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58752: Permission denied (13)
[0712/154033.081690:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58779: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531410035471.9, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '58779.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 107s

First occurrence: 2018-07-12T15:41:51.447642 | revision 2124a82, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/155530.406711:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10042/devtools/browser/95732812-da5e-4f89-9cd3-51b460672278
[0712/155530.435886:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 76249: Permission denied (13)
[0712/155530.595899:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 76295: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531410931620.27, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '76295.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T15:56:44.208499 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:56:44.208499 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/160640.610461:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9343/devtools/browser/df4d7c96-0b09-4175-9da2-11b4c1bb9aab
[0712/160640.663827:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 97605: Permission denied (13)
[0712/160640.908471:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 97632: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531411602228.14, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '97632.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 103s

First occurrence: 2018-07-12T16:07:58.400226 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/172209.318954:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9955/devtools/browser/ecc14024-4c7a-45c1-b8da-5c851296b001
[0712/172209.344122:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 95057: Permission denied (13)
[0712/172209.476661:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 95082: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-i386-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531416130018.92, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '95082.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=i386 [Could not resolve host: mirrors.fedoraproject.org]

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-12T17:23:20.153551 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T17:23:20.153551 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
[0922/200634.002056:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9491/devtools/browser/336f69f7-e5ea-4dac-9e1c-9691dd90590d
[0922/200634.026870:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 30463: Permission denied (13)
[0922/200634.173777:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 30495: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9791/cockpit/$a7a2ad538bfaef17e11a594d1cf5e9b67608095f446f3232f4a5a53f257fe8b2/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…3232f4a5a53f257fe8b2/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-i386-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-i386-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-i386-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-i386-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 30s

First occurrence: 2018-09-22T20:06:46.617136 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/ubuntu-stable
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/094059.837836:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9536/devtools/browser/4badb978-8f67-4369-b8a7-c05caa2de7fd
[0712/094059.892493:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 178976: Permission denied (13)
[0712/094100.125675:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 179020: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531388460945.95, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '179020.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-12T09:42:22.982028 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/130310.645756:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10102/devtools/browser/30781f61-d68b-489d-a4b9-462ec2354d56
[0712/130310.676434:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 37216: Permission denied (13)
[0712/130310.859952:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 37247: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531400591631.48, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '37247.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T13:04:18.832261 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:04:18.832261 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/134251.633067:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10139/devtools/browser/e1a8d31d-ab9b-41b5-995b-3919ed4fe88d
[0712/134251.665549:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51699: Permission denied (13)
[0712/134251.919080:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51773: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531402973412.47, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '51773.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 103s

First occurrence: 2018-07-12T13:44:00.092547 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:44:00.092547 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/151157.912070:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10101/devtools/browser/c7652f37-3b59-4f67-96ef-123ebb5578ce
[0712/151157.947554:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 36438: Permission denied (13)
[0712/151158.141780:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 36466: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531408319082.94, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '36466.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 113s

First occurrence: 2018-07-12T15:13:07.340174 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/163405.489886:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9762/devtools/browser/63d39c33-bb42-47af-ae56-cfdfb8fa2076
[0712/163405.517448:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79651: Permission denied (13)
[0712/163405.660372:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79679: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531413246676.28, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '79679.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 101s

First occurrence: 2018-07-12T16:35:13.578924 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T16:35:13.578924 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/164856.382767:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9504/devtools/browser/12405dca-5e13-4294-a648-5982b6eba7f3
[0712/164856.408210:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 134100: Permission denied (13)
[0712/164856.546966:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 134131: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531414137342.41, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '134131.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 92s

First occurrence: 2018-07-12T16:50:02.359267 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/215902.264997:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9804/devtools/browser/05cb243d-cba0-4c50-8eb4-7a4a17be16ad
[0712/215902.317813:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 103300: Permission denied (13)
[0712/215902.606201:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 103345: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531432743527.49, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '103345.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 111s

First occurrence: 2018-07-12T22:00:12.777753 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0713/063518.986939:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9711/devtools/browser/f1811c90-b3f9-4b2f-981c-f4cd91d2a642
[0713/063519.019490:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 257926: Permission denied (13)
[0713/063519.208942:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 257952: Permission denied (13)
CDP: {"source":"network","level":"error","text":"Failed to load resource: the server responded with a status of 404 (Not Found)","timestamp":1531463725626.5,"url":"http://127.0.0.2:9191/cockpit/$3ccc1e0663fe8cf9e47967c983042068df36c4319b68fd38f5048ba29fd5aeea/machines/base.css","networkRequestId":"257952.108"}
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531463720174.41, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '257952.8'}
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 404 (Not Found)', 'timestamp': 1531463725626.5, 'url': 'http://127.0.0.2:9191/cockpit/$3ccc1e0663fe8cf9e47967c983042068df36c4319b68fd38f5048ba29fd5aeea/machines/base.css', 'networkRequestId': '257952.108'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-13T06:36:27.168248 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/122454.456945:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9318/devtools/browser/f92498ba-43c1-4ef4-ab33-dd773a98894b
[0713/122454.496676:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 33386: Permission denied (13)
[0713/122454.842029:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 33413: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":39419,"columnNumber":65,"url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":39419,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":39413,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":39361,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9791/cockpit/$d78cf51882a58319544446767731442beda0f603b3d4c63450160ea95e7458fd/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…c63450160ea95e7458fd/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-ubuntu-stable-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "check-machines", line 770, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 47s

First occurrence: 2018-07-13T12:25:04.583476 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
Times recorded: 6
Latest occurrences:

  • 2018-07-13T12:25:04.583476 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T13:12:02.747744 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T13:44:57.671665 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T14:36:43.528362 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T15:18:03.433639 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T15:54:19.023411 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
dpkg: warning: ignoring request to remove libvirt-dbus which isn't installed
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0922/200419.310795:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9807/devtools/browser/d6096a98-c05f-4792-8ce2-285a0e00901d
[0922/200419.336007:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26962: Permission denied (13)
[0922/200419.535572:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26993: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9391/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…081c8a8201eaadc8f5dd/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-ubuntu-stable-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-ubuntu-stable-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-ubuntu-stable-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-ubuntu-stable-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 33s

First occurrence: 2018-09-22T20:04:27.251742 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/rhel-7-5
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/094852.813371:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9271/devtools/browser/10b49355-4a6f-42a2-a2ef-991bf2ae05cb
[0712/094852.834457:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 216745: Permission denied (13)
[0712/094852.969854:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 216770: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531388933411.17, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '216770.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 92s

First occurrence: 2018-07-12T09:50:03.069326 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/134735.767038:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9323/devtools/browser/ec03dc87-007a-433a-945e-1feaa02ffe46
[0712/134735.795944:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 68490: Permission denied (13)
[0712/134735.952848:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 68515: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.log
[0100/000000.271628:ERROR:broker_posix.cc(102)] Error sending sync broker message: Broken pipe (32)
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531403256563.74, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '68515.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-12T13:48:46.913678 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:48:46.913678 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/153257.409511:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9838/devtools/browser/d9cdd5cf-514b-4cd4-ab79-fd3542b31969
[0712/153257.433374:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54817: Permission denied (13)
[0712/153257.598229:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54842: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409578032.04, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '54842.8'}

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-12T15:34:08.785727 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:34:08.785727 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/165219.490379:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9700/devtools/browser/e6b67f74-fdde-410a-a4b1-b00847cb1ff2
[0712/165219.516653:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 150975: Permission denied (13)
[0712/165219.739499:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 151000: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531414340346.56, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '151000.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T16:53:32.445189 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/200418.390475:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9471/devtools/browser/efa30b57-0503-40e6-88f9-9cb2038806f0
[0712/200418.417569:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63537: Permission denied (13)
[0712/200418.623797:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63598: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531425859190.68, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '63598.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T20:05:29.551918 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/214617.698677:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9467/devtools/browser/f496e399-f07c-464c-992f-a38061235490
[0712/214617.725888:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 91217: Permission denied (13)
[0712/214617.856368:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 91242: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531431978500.05, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '91242.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T21:47:35.195266 | revision f6aac19, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/221402.008701:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10210/devtools/browser/1bdaf69d-3468-4574-b84c-0f5bf456ecab
[0712/221402.067454:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58236: Permission denied (13)
[0712/221402.369063:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58265: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2901-FAIL.log
[0100/000000.630484:ERROR:broker_posix.cc(102)] Error sending sync broker message: Broken pipe (32)
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531433643082.05, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '58265.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-12T22:15:18.332219 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/231811.884615:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9811/devtools/browser/d710cc23-6354-41e9-8da1-afd542dc69aa
[0712/231811.915095:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 197563: Permission denied (13)
[0712/231812.132981:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 197675: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531437492820.51, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '197675.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T23:19:23.213839 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0713/001057.395078:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10003/devtools/browser/8ce865dc-f619-401a-985b-7452ae3272f3
[0713/001057.423266:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 112199: Permission denied (13)
[0713/001057.600938:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 112225: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531440658501.98, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '112225.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 94s

First occurrence: 2018-07-13T00:12:20.012303 | revision 0b7e15a
Times recorded: 1
Latest occurrences:

  • 2018-07-13T00:12:20.012303 | revision 0b7e15a

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
[0921/142621.819261:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9663/devtools/browser/946200a8-6171-4390-b60f-de5eaf38a433
[0921/142621.863200:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 375593: Permission denied (13)
[0921/142622.014387:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 375620: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9391/cockpit/$0778e5b5f8800d73dc71400f3a91da0a0f24aa6394a16b3eb80c6fc9c3224bf3/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6b3eb80c6fc9c3224bf3/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-5-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-5-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-5-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-5-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 124 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 60s

First occurrence: 2018-09-21T14:26:44.627330 | revision bc07816, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/debian-stable
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/105644.729430:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9230/devtools/browser/e7be5b40-52de-4aa4-bea3-28cf3be7a1a8
[0712/105644.764578:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 265438: Permission denied (13)
[0712/105644.986913:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 265466: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531393005899.86, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '265466.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 85s

First occurrence: 2018-07-12T10:57:52.326860 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/125820.911623:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9584/devtools/browser/12c9dfbf-7067-4ec9-8986-7231a9411982
[0712/125820.966646:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 30239: Permission denied (13)
[0712/125821.214921:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 30268: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531400302066.14, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '30268.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 89s

First occurrence: 2018-07-12T12:59:31.238470 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T12:59:31.238470 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/132614.755366:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9658/devtools/browser/dc338b5b-3fd5-4184-89cc-fc50b62f9d07
[0712/132614.783203:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 75957: Permission denied (13)
[0712/132614.939971:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 75982: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531401975799.97, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '75982.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 82s

First occurrence: 2018-07-12T13:27:20.856976 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:27:20.856976 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/140904.361930:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9683/devtools/browser/758528da-d4e3-4366-ac7a-4e8d007cc310
[0712/140904.387138:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79351: Permission denied (13)
[0712/140904.557700:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79383: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531404544995.65, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '79383.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 75s

First occurrence: 2018-07-12T14:10:09.797865 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/215401.727695:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9275/devtools/browser/2035456f-49c5-44e7-9af4-3b98dd7fe9eb
[0712/215401.753130:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79768: Permission denied (13)
[0712/215401.887721:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79794: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531432442561.29, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '79794.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 81s

First occurrence: 2018-07-12T21:55:07.620075 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/224113.817346:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10011/devtools/browser/94b1137a-d5b7-4e6f-87c6-d1ee634e7b6d
[0712/224113.846715:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 13167: Permission denied (13)
[0712/224113.991874:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 13193: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531435274809.95, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '13193.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-12T22:42:39.330543 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0713/191945.510523:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10170/devtools/browser/3cc84799-db3e-49be-94fa-e4b7c8192617
[0713/191945.540045:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 49273: Permission denied (13)
[0713/191945.728192:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 49302: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2901-FAIL.log
[0100/000000.381582:ERROR:broker_posix.cc(102)] Error sending sync broker message: Broken pipe (32)
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531509586448.66, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '49302.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-13T19:20:52.051527 | revision f9e0c31407c6ddb2450d8e67b33b7f1ecbc30c25, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-13T19:20:52.051527 | revision f9e0c31407c6ddb2450d8e67b33b7f1ecbc30c25, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0714/003928.569671:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9854/devtools/browser/4dc00aae-3585-4610-afe0-02a3fe73f9bb
[0714/003928.596739:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 52402: Permission denied (13)
[0714/003928.787431:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 52436: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":39419,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":39419,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":39413,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":39361,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$5321c39acdffcfa2de18f9b10a959a2bd01dac97e47843fef7f08ad36ce9571e/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…43fef7f08ad36ce9571e/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 770, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 20s

First occurrence: 2018-07-14T00:39:33.056803 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-14T00:39:33.056803 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0714/073034.130786:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9943/devtools/browser/00e08284-ff25-418f-ae4e-6cb7718e075d
[0714/073034.190686:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63288: Permission denied (13)
[0714/073034.393043:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63331: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-stable-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531553435293.77, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '63331.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 88s

First occurrence: 2018-07-14T07:31:43.120104 | revision 2ec98d4, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
dpkg: warning: ignoring request to remove libvirt-dbus which isn't installed
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0922/200236.276872:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9791/devtools/browser/54032fc0-815a-4c80-bdce-7b86cf98e409
[0922/200236.306657:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26092: Permission denied (13)
[0922/200236.447843:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26125: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$8154333b96f1a793543bd6ddf41a959c3e287784a5bfe4b59b8e0a3d0f91958b/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…e4b59b8e0a3d0f91958b/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-debian-stable-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-debian-stable-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-debian-stable-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-debian-stable-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 18s

First occurrence: 2018-09-22T20:02:42.504421 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/debian-testing
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/105853.748088:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9439/devtools/browser/7eac77e4-e188-4b9a-9c55-aa1f95860b88
[0712/105853.779372:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 207779: Permission denied (13)
[0712/105853.943389:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 207810: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531393134684.05, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '207810.8'}

not ok 35 testSerialConsole (check_machines.TestMachines) # duration: 86s

First occurrence: 2018-07-12T11:00:00.778588 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/131419.376129:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9921/devtools/browser/320653f2-56b5-4b3f-a9de-8479e5fbc6ea
[0712/131419.422097:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39882: Permission denied (13)
[0712/131419.582452:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39943: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531401260132.3, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '39943.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-12T13:15:26.065932 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:15:26.065932 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/134518.114586:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9565/devtools/browser/987d153b-f96b-4d72-9992-78ced17bc4a7
[0712/134518.142869:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 35877: Permission denied (13)
[0712/134518.274612:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 35902: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531403118834.74, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '35902.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-12T13:46:24.501694 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:46:24.501694 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/152740.423389:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9897/devtools/browser/1df82d74-7ea4-4210-ab3d-6b00adafc855
[0712/152740.460466:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 75169: Permission denied (13)
[0712/152740.628503:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 75193: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409260917.3, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '75193.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 81s

First occurrence: 2018-07-12T15:28:45.183513 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/162739.180651:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9807/devtools/browser/0dfe8c34-f1ab-49f6-bd54-84e336364d03
[0712/162739.213661:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 112538: Permission denied (13)
[0712/162739.400285:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 112565: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531412859893.48, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '112565.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 85s

First occurrence: 2018-07-12T16:28:46.321708 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/170358.004944:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9969/devtools/browser/578dc8e6-5b23-4ffc-a0ff-be2d22be7f13
[0712/170358.031534:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 154503: Permission denied (13)
[0712/170358.198901:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 154537: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531415038678.91, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '154537.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 108s

First occurrence: 2018-07-12T17:05:07.403736 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/182503.509947:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9618/devtools/browser/18c9bcd4-f99f-4c1d-a6fb-778de51ce070
[0712/182503.539836:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 253561: Permission denied (13)
[0712/182503.725298:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 253588: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531419904392.57, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '253588.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-12T18:26:09.093077 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/225647.966197:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9442/devtools/browser/bedfefef-54ba-4b6b-82aa-952298a27a13
[0712/225647.992741:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63322: Permission denied (13)
[0712/225648.181248:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 63348: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531436208640.23, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '63348.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 83s

First occurrence: 2018-07-12T22:58:03.656775 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/064714.927746:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9296/devtools/browser/bcab9cde-3dbc-4695-81e2-a6359a5551b5
[0713/064714.960832:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38713: Permission denied (13)
[0713/064715.165470:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38739: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-debian-testing-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531464435869.09, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '38739.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 86s

First occurrence: 2018-07-13T06:48:21.299348 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
[0922/220046.099585:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10100/devtools/browser/0c2b7a31-d7ee-4f19-9dc7-0d106cc41a40
[0922/220046.124677:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 27847: Permission denied (13)
[0922/220046.244518:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 27879: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$4b5e09d9d2ce7f2a281f9974b9f9043ef91359cdc246081c8a8201eaadc8f5dd/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…081c8a8201eaadc8f5dd/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-debian-testing-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 23s

First occurrence: 2018-09-22T22:01:11.836644 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/rhel-x
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/110704.280612:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9366/devtools/browser/bfe8185f-f30c-439e-b72a-d60ccb6f4002
[0712/110704.306021:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 205963: Permission denied (13)
[0712/110704.523133:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 206034: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531393625156.28, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '206034.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T11:08:16.375062 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/134456.605805:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10100/devtools/browser/9ef39420-2e37-4ed5-9c17-2e0dab7ac542
[0712/134456.637727:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73377: Permission denied (13)
[0712/134456.875003:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73405: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531403098297.96, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '73405.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T13:46:12.562119 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:46:12.562119 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/152514.380276:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9582/devtools/browser/9bead033-0d7c-48ae-a864-247850802709
[0712/152514.410495:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 41937: Permission denied (13)
[0712/152514.581323:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 41964: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409115333.65, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '41964.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 105s

First occurrence: 2018-07-12T15:26:27.622345 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/164625.767444:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9417/devtools/browser/5131a444-1113-460c-8dea-71f8e97cbfb2
[0712/164625.815234:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 101325: Permission denied (13)
[0712/164626.069699:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 101355: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531413986808.62, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '101355.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-12T16:47:38.390608 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/181640.231320:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10082/devtools/browser/5e2facbf-df42-4173-b33c-4c8f5a370835
[0712/181640.263683:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 236221: Permission denied (13)
[0712/181640.391576:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 236250: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531419401587.28, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '236250.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T18:17:52.683332 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/010548.861003:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9246/devtools/browser/4fda4257-c9c3-4ffb-acda-2bfa1120f6a1
[0713/010548.891053:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 231027: Permission denied (13)
[0713/010549.053273:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 231054: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531443950194.58, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '231054.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-13T01:07:00.543281 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/064214.643563:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9690/devtools/browser/11b06807-7400-46b1-8479-4b05ac243c9b
[0713/064214.671107:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 47976: Permission denied (13)
[0713/064214.840621:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 48002: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531464135434.44, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '48002.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 93s

First occurrence: 2018-07-13T06:43:24.867992 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/075601.326118:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10014/devtools/browser/f6741022-a7e8-4d4b-877e-1a88f595e9f5
[0713/075601.366849:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 42306: Permission denied (13)
[0713/075601.540124:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 42333: Permission denied (13)
> log: PackageKit went away from D-Bus
> warning: Checking for available updates failed: not-found
> warning: Checking for available updates failed: not-found
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531468562547.79, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '42333.8'}
log: PackageKit went away from D-Bus
warning: Checking for available updates failed: not-found
warning: Checking for available updates failed: not-found

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-13T07:57:14.805268 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0713/123056.524857:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9947/devtools/browser/fcbefdaa-ab74-431f-a95b-4a7d5626215f
[0713/123056.549283:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58542: Permission denied (13)
[0713/123056.713616:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58568: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":39419,"columnNumber":65,"url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":39419,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":39413,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":39361,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39420:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39414:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:39362:73)\n    at E (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9391/cockpit/$7e6a1fddaeae987cec7cf956dadfd0391799ebfb13953d494ea020b3c7d57e5b/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…3d494ea020b3c7d57e5b/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-x-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "check-machines", line 770, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 33s

First occurrence: 2018-07-13T12:31:07.348660 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
Times recorded: 5
Latest occurrences:

  • 2018-07-13T12:31:07.348660 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T13:13:49.045219 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T13:59:43.638880 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T14:34:50.379449 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs
  • 2018-07-13T15:20:28.469567 | revision d09eb577fc00f0a89353493354f96cce2f0c30f3, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0922/200416.296191:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9599/devtools/browser/f2d7f832-19f5-4040-b6ad-9faac1f5e35e
[0922/200416.323262:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26674: Permission denied (13)
[0922/200416.500916:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 26700: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$39cdd5327566818cf64acea6b7554cb74714da0c0f6b96882dee4315149f01c8/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…96882dee4315149f01c8/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-x-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-x-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-x-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-x-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 41s

First occurrence: 2018-09-22T20:04:33.098456 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/fedora-28
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/111841.735365:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9969/devtools/browser/65ea45df-d0c7-461f-995b-06cadd9f9fd2
[0712/111841.761148:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 188939: Permission denied (13)
[0712/111841.969889:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 188964: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531394322734.64, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '188964.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T11:19:55.668775 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/132256.017916:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10216/devtools/browser/85a9296d-665c-471c-9335-a357cbff59c9
[0712/132256.046980:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53705: Permission denied (13)
[0712/132256.232592:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53731: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531401777154.37, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '53731.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T13:24:10.426412 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:24:10.426412 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/134242.866287:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9382/devtools/browser/d48d5280-461a-4c65-a388-ed7b0fc112a1
[0712/134242.902573:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51951: Permission denied (13)
[0712/134243.094278:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51979: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531402963801.72, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '51979.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 33 testSerialConsole (check_machines.TestMachines) # duration: 102s

First occurrence: 2018-07-12T13:44:00.863038 | revision 2565304, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/153822.867952:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9275/devtools/browser/93920db3-ed5c-4c15-b885-83ec3943d000
[0712/153822.904890:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 50595: Permission denied (13)
[0712/153823.181066:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 50631: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409906414.09, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '50631.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 116s

First occurrence: 2018-07-12T15:39:47.625876 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:39:47.625876 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/153908.811205:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9651/devtools/browser/9861516e-ed57-4c52-976d-90f1797b24f8
[0712/153908.859687:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51367: Permission denied (13)
[0712/153909.013647:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 51393: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409949769.24, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '51393.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 109s

First occurrence: 2018-07-12T15:40:26.701459 | revision 2565304
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:40:26.701459 | revision 2565304

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/155336.572134:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9649/devtools/browser/5db23440-15fc-4263-93ed-252e8708cbb6
[0712/155336.597218:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 55995: Permission denied (13)
[0712/155336.802985:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 56023: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531410819013.11, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '56023.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 111s

First occurrence: 2018-07-12T15:54:58.409372 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:54:58.409372 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/161959.863436:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9352/devtools/browser/5efa526c-5438-4fa8-90e5-1c64f5927e4e
[0712/161959.889595:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 94984: Permission denied (13)
[0712/162000.079134:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 95016: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531412400644.66, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '95016.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T16:21:15.842150 | revision 0b7e15a
Times recorded: 1
Latest occurrences:

  • 2018-07-12T16:21:15.842150 | revision 0b7e15a

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/165153.519682:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9760/devtools/browser/637a2bd7-0e1a-4b07-8724-9cbf871503cf
[0712/165153.546725:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 111957: Permission denied (13)
[0712/165153.738204:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 111985: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531414314836.7, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '111985.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T16:53:09.145164 | revision 2565304, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0712/193417.412540:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9548/devtools/browser/a6d70513-38da-4c63-8621-59335545ce89
[0712/193417.440454:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 110952: Permission denied (13)
[0712/193417.624151:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 110978: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-28-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531424058238.87, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '110978.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f28&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-12T19:35:50.129560 | revision 0b7e15a
Times recorded: 1
Latest occurrences:

  • 2018-07-12T19:35:50.129560 | revision 0b7e15a

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0922/202950.454093:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9930/devtools/browser/90262b26-1bf1-4154-871f-5a9f28f5c773
[0922/202950.525512:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39623: Permission denied (13)
[0922/202950.791402:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39716: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…28534b382f87b5b55bea/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-28-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-28-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-28-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-28-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 48s

First occurrence: 2018-09-22T20:30:11.228065 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/rhel-7
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/113248.428046:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10032/devtools/browser/4f8c7522-4010-4d46-84eb-ef23697bd6d8
[0712/113248.454091:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 183321: Permission denied (13)
[0712/113248.595018:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 183346: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531395169158.15, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '183346.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-12T11:34:02.407831 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/140439.069201:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9915/devtools/browser/2a00f772-2a3c-486e-be49-dd88d467ec63
[0712/140439.095341:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 109200: Permission denied (13)
[0712/140439.249140:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 109226: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531404279948.44, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '109226.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T14:05:52.562442 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T14:05:52.562442 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/142837.463293:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10115/devtools/browser/13bc53a6-00f5-4a56-97af-0cd08acbcaa7
[0712/142837.491300:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 94808: Permission denied (13)
[0712/142837.672807:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 94836: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531405718564.39, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '94836.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T14:29:52.075988 | revision 0b7e15a
Times recorded: 1
Latest occurrences:

  • 2018-07-12T14:29:52.075988 | revision 0b7e15a

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/160016.478200:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9686/devtools/browser/0f27e2d2-ccba-4992-bb22-e7ffea4d6c32
[0712/160016.504646:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 100356: Permission denied (13)
[0712/160016.642094:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 100381: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531411217116.62, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '100381.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T16:01:32.011417 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T16:01:32.011417 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/170044.210379:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9241/devtools/browser/2710771d-7feb-4ca0-8a2a-2ca1e188a68f
[0712/170044.237748:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 109190: Permission denied (13)
[0712/170044.441533:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 109215: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531414845004.8, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '109215.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T17:01:59.253824 | revision 28aae47, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/171602.737672:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9367/devtools/browser/da2dcb87-4e6a-4da2-8b1b-554a1d14c09e
[0712/171602.836211:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 57117: Permission denied (13)
[0712/171603.396119:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 57144: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531415766212.03, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '57144.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 142s

First occurrence: 2018-07-12T17:18:00.688815 | revision 0b7e15a
Times recorded: 1
Latest occurrences:

  • 2018-07-12T17:18:00.688815 | revision 0b7e15a

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0713/045201.814314:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9409/devtools/browser/ed6e7647-7da0-464d-8bde-169a1143a50c
[0713/045201.844263:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 161982: Permission denied (13)
[0713/045202.014110:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 162008: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531457523292.54, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '162008.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-13T04:53:17.011892 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0713/065611.799456:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9372/devtools/browser/9ec87402-bd03-4483-9d3b-22c568e77870
[0713/065611.835410:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54808: Permission denied (13)
[0713/065611.972450:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54833: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531464973810.07, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '54833.8'}

not ok 68 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-13T06:57:28.144322 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0713/082220.292594:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9492/devtools/browser/fd8ee4e7-a932-4322-8e25-417df52334cf
[0713/082220.326057:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 61895: Permission denied (13)
[0713/082220.450437:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 61920: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531470141156.46, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '61920.8'}

not ok 30 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-13T08:23:35.323663 | revision 37302e7, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0719/161225.182588:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9804/devtools/browser/2ddba784-a490-448e-bfdf-0dbf7eb1532e
[0719/161225.238586:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 91622: Permission denied (13)
[0719/161225.373890:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 91659: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532016746089.8, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '91659.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 106s

First occurrence: 2018-07-19T16:13:39.085310 | revision 616f6ab, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/centos-7
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/121248.334508:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10129/devtools/browser/b0b8580c-0d04-4579-b684-1cb807354c7f
[0712/121248.358440:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 126520: Permission denied (13)
[0712/121248.559134:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 126545: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531397569074.79, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '126545.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 95s

First occurrence: 2018-07-12T12:14:16.661969 | revision e7984d5, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/131826.185373:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9782/devtools/browser/75d7eda3-ab76-4021-baee-f5260ac2586b
[0712/131826.212348:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 327808: Permission denied (13)
[0712/131826.414911:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 327863: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531401506919.02, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '327863.8'}

not ok 35 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-12T13:19:39.734162 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T13:19:39.734162 | revision c7de51a3559095a01a6c3678255244ec9d74d6f1, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/152029.056120:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:10198/devtools/browser/ae1fc858-002e-49c5-9a6c-982a0ed741cd
[0712/152029.109639:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53454: Permission denied (13)
[0712/152029.316339:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53482: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531408830525.16, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '53482.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 121s

First occurrence: 2018-07-12T15:21:47.136468 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T15:21:47.136468 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/153344.834805:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9339/devtools/browser/e4137a5d-aac5-49ab-8c5d-53341d4a2f79
[0712/153344.862349:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53542: Permission denied (13)
[0712/153344.992336:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 53569: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409625556.26, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '53569.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-12T15:34:59.676276 | revision 2124a82, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/153921.722220:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9772/devtools/browser/7f1302b1-2db8-4dc8-845e-8a568d25bbee
[0712/153921.752987:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 55881: Permission denied (13)
[0712/153921.955924:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 55908: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531409962774.35, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '55908.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 101s

First occurrence: 2018-07-12T15:40:36.852660 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/160831.273567:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9262/devtools/browser/1144a00a-a896-477b-957b-f9b5fc3b8ef9
[0712/160831.302423:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 88220: Permission denied (13)
[0712/160831.469777:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 88246: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531411712381.83, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '88246.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-12T16:09:46.236511 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T16:09:46.236511 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/162455.755475:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10036/devtools/browser/5c86be6c-1ecf-4321-a11f-a3d13277d07f
[0712/162455.778955:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 128303: Permission denied (13)
[0712/162455.979296:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 128340: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531412696903.39, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '128340.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-12T16:26:28.094909 | revision 0b7e15a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0712/172055.757656:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10026/devtools/browser/7e1e03ee-2cc9-4677-a24c-a904219b3f7b
[0712/172055.786472:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 55442: Permission denied (13)
[0712/172055.951802:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 55479: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531416056846.97, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '55479.8'}

not ok 16 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-12T17:22:30.137440 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb
Times recorded: 1
Latest occurrences:

  • 2018-07-12T17:22:30.137440 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0712/180619.329757:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9501/devtools/browser/5e8b9c1f-f2c7-4f51-b9fd-2c9108c076ee
[0712/180619.355362:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 149995: Permission denied (13)
[0712/180619.508795:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 150021: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-centos-7-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 780, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531418780326.5, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '150021.8'}

not ok 39 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-12T18:07:33.874810 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-12T18:07:33.874810 | revision 0efd56f3ac20604a0605d32eb8648b6e55d85dfb, logs

``` # ---------------------------------------------------------------------- # testSerialConsole (check_machines_virsh.TestMachinesVirsh) # error: package libvirt-dbus is not installed ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory [0921/170854.500287:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9723/devtools/browser/85f708a1-6faf-44d0-a342-6e5aad8aa8b2
[0921/170854.523853:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 42921: Permission denied (13)
[0921/170854.644997:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 42948: Permission denied (13)

info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40046,"columnNumber":65,"url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":40046,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":40040,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":39988,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:40047:66)\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:40041:29)\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:39989:73)\n at E (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:570:46)\n at O (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:586:18)\n at t.forceUpdate (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1050:21)\n at I (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:632:62)\n at R.updateComponent (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1011:17)\n at R.emitUpdate (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1006:85)\n at b (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:40047:66)\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:40041:29)\n at t.value (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:39989:73)\n at E (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:570:46)\n at O (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:586:18)\n at t.forceUpdate (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1050:21)\n at I (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:632:62)\n at R.updateComponent (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1011:17)\n at R.emitUpdate (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:1006:85)\n at b (http://127.0.0.2:9691/cockpit/$75e10e80f17ebf5b6eb64d165abb170b821b0ae8add1b7e25524d034dfc020f7/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…b7e25524d034dfc020f7/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-centos-7-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-centos-7-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-centos-7-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-centos-7-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
File "machineslib.py", line 917, in testSerialConsole
b.click("#console-type-select li > a:contains(Serial Console)")
File "testlib.py", line 205, in click
self.call_js_func('ph_click', selector, force)
File "testlib.py", line 187, in call_js_func
return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
File "testlib.py", line 171, in eval_js
silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
File "cdp.py", line 85, in invoke
res = self.command(cmd)
File "cdp.py", line 112, in command
raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 40s

First occurrence: 2018-09-21T17:09:10.086443 | revision 41e92114f871df08deefa3254412d436d6949ffa, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10122-20180921-164040-41e92114-verify-centos-7/log.html)
Times recorded: 3
Latest occurrences:

- 2018-09-21T17:09:10.086443 | revision 41e92114f871df08deefa3254412d436d6949ffa, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10122-20180921-164040-41e92114-verify-centos-7/log.html)
- 2018-09-22T20:22:40.192624 | revision 2ed67fd1cbd7330db0701b56dfeec85dd1e06dcf, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10134-20180922-195555-2ed67fd1-verify-centos-7/log.html)
- 2018-09-22T20:27:23.492707 | revision 2ed67fd1cbd7330db0701b56dfeec85dd1e06dcf, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10134-20180922-195555-2ed67fd1-verify-centos-7/log.html)

martinpitt added a commit that referenced this issue Jul 12, 2018
@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/fedora-27
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0723/195514.468917:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9570/devtools/browser/89d5fbfe-54b7-4001-9559-2540c2835f7c
[0723/195514.562733:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73546: Permission denied (13)
[0723/195514.753282:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73572: Permission denied (13)
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
> warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532375716558.86, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '73572.8'}
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]
warning: Checking for available updates failed: Error: cannot update repo 'updates': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=updates-released-f27&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org]

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 115s

First occurrence: 2018-07-23T19:56:40.007136 | revision 362bf5b, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0727/172210.207258:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9358/devtools/browser/d0c7cb26-842a-4a07-a38b-96019b82cee5
[0727/172210.230759:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 69783: Permission denied (13)
[0727/172210.392301:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 69808: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40114,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":40114,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":40108,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":40056,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"D","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"D","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$07eb2f046a49297492e8cb7006039d6bd3ac7e1e9a237cf3965b1cbc989d7519/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…7cf3965b1cbc989d7519/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 42s

First occurrence: 2018-07-27T17:22:26.864823 | revision 0b402d6, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0807/154455.657448:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9621/devtools/browser/906a738a-f93f-4a92-8acb-4486d771d21c
[0807/154455.720504:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 22636: Permission denied (13)
[0807/154455.924985:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 22661: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40114,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40114,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40108,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40056,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"D","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"D","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…68ff866aedd1691be22a/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 180 testSerialConsole (check_machines.TestMachines) # duration: 46s

First occurrence: 2018-08-07T15:45:14.125495 | revision 6ed0df3, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0803/222504.636874:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9384/devtools/browser/28b86a53-4ea6-4ff0-a88f-064f50bf9445
[0803/222504.692060:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73203: Permission denied (13)
[0803/222504.896817:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 73247: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40114,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40114,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40108,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":40056,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"D","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"D","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40115:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40109:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:40057:73)\n    at E (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:1035:21)\n    at D (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$3e27d3f1cbd2bb8f72668bbbe3a1a583d42c2cd4585868ff866aedd1691be22a/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…68ff866aedd1691be22a/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 70 testSerialConsole (check_machines.TestMachines) # duration: 41s

First occurrence: 2018-08-03T22:25:19.634613 | revision 6ed0df3, logs
Times recorded: 4
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0827/210714.415029:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9454/devtools/browser/39031795-1a63-4b4b-9cec-bca33d3c27cf
[0827/210714.476548:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54076: Permission denied (13)
[0827/210714.717461:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 54156: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40063,"columnNumber":65,"url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40063,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40057,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40005,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40064:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40058:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40006:73)\n    at E (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40064:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40058:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40006:73)\n    at E (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9691/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…cfbdfe5e286ff85b79f3/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 22 testSerialConsole (check_machines.TestMachines) # duration: 38s

First occurrence: 2018-08-27T21:07:33.189987 | revision 32633bd, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0828/211443.395178:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9453/devtools/browser/6242ef89-cfd5-4e8f-b0e8-f659d53776cb
[0828/211443.437493:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 286202: Permission denied (13)
[0828/211443.602726:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 286237: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40063,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40063,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40057,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":40005,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40064:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40058:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40006:73)\n    at E (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40064:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40058:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:40006:73)\n    at E (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$ebdbde0648fe77cab5a10bea92d60f78a68c52049d91cfbdfe5e286ff85b79f3/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…cfbdfe5e286ff85b79f3/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 71 testSerialConsole (check_machines.TestMachines) # duration: 37s

First occurrence: 2018-08-28T21:15:01.862668 | revision 32633bd, logs
Times recorded: 12
Latest occurrences:

  • 2018-08-28T22:07:26.954660 | revision 32633bd, logs
  • 2018-08-28T23:34:56.003307 | revision 32633bd, logs
  • 2018-08-29T00:32:28.681804 | revision 32633bd, logs
  • 2018-08-29T01:54:21.816549 | revision 32633bd, logs
  • 2018-08-29T02:51:21.819573 | revision 32633bd, logs
  • 2018-08-29T18:25:43.405311 | revision 57e750f, logs
  • 2018-08-30T11:44:18.260266 | revision 32633bd, logs
  • 2018-08-30T14:20:32.943709 | revision 3f30fd9, logs
  • 2018-08-30T15:46:19.277346 | revision ef07f5f82780d6b7d81b6a38073794de613f7f34, logs
  • 2018-09-02T20:34:40.907297 | revision 32633bd, logs

``` # ---------------------------------------------------------------------- # testSerialConsole (check_machines.TestMachines) # ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory [0904/135719.706584:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9802/devtools/browser/53a3e776-fdcc-4587-ac3a-bb20f34ad547
[0904/135719.761277:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 445062: Permission denied (13)
[0904/135719.966189:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 445091: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40077,"columnNumber":65,"url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40077,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40071,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40019,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n at E (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n at P (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n at t.forceUpdate (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n at I (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n at R.updateComponent (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n at R.emitUpdate (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n at b (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n at t.value (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n at E (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n at P (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n at t.forceUpdate (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n at I (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n at R.updateComponent (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n at R.emitUpdate (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n at b (http://127.0.0.2:9791/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6dd098b7abda27e444ec/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-27-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
File "check-machines", line 896, in testSerialConsole
b.click("#console-type-select li > a:contains(Serial Console)")
File "testlib.py", line 205, in click
self.call_js_func('ph_click', selector, force)
File "testlib.py", line 187, in call_js_func
return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
File "testlib.py", line 171, in eval_js
silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
File "cdp.py", line 85, in invoke
res = self.command(cmd)
File "cdp.py", line 112, in command
raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 71 testSerialConsole (check_machines.TestMachines) # duration: 49s

First occurrence: 2018-09-04T13:57:42.710412 | revision e386d0b0807ea624954f615f2f1716bd48ead625, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-9975-20180904-131515-e386d0b0-verify-fedora-27/log.html)
Times recorded: 2
Latest occurrences:

- 2018-09-04T13:57:42.710412 | revision e386d0b0807ea624954f615f2f1716bd48ead625, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-9975-20180904-131515-e386d0b0-verify-fedora-27/log.html)
- 2018-09-05T12:22:41.273282 | revision cd81bc89af399d0d967e702fa288f598f2f5f45a, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-9941-20180905-114949-cd81bc89-verify-fedora-27/log.html)

@cockpituous
Copy link
Contributor

cockpituous commented Jul 12, 2018

verify/fedora-testing
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0903/085232.621379:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9441/devtools/browser/54dc466d-f66d-49ab-87f5-879850635a44
[0903/085232.644875:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 68299: Permission denied (13)
[0903/085232.830945:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 68340: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40077,"columnNumber":65,"url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":40077,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":40071,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":40019,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9491/cockpit/$949f6942dc13e31b4bee8d82e0922c912532fc11852eec97bc5a602a7037ddf8/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…ec97bc5a602a7037ddf8/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.log
Core dumps downloaded to /build/cockpit/TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.core
Traceback (most recent call last):
  File "check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 217 testSerialConsole (check_machines.TestMachines) # duration: 38s

First occurrence: 2018-09-03T08:52:48.783389 | revision 98d3557e77a79b6f87e0370ff38ac2fef6e21d99, logs
Times recorded: 3
Latest occurrences:

  • 2018-09-03T08:52:48.783389 | revision 98d3557e77a79b6f87e0370ff38ac2fef6e21d99, logs
  • 2018-09-03T13:30:16.463158 | revision 26b7a7d, logs
  • 2018-09-03T14:41:05.279502 | revision 26b7a7d, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0903/155422.817635:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10072/devtools/browser/08609a14-2934-4008-87f6-10897f838b46
[0903/155422.845532:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 25071: Permission denied (13)
[0903/155423.032997:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 25098: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40077,"columnNumber":65,"url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40077,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40071,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40019,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9391/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6dd098b7abda27e444ec/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2501-FAIL.log
Core dumps downloaded to /build/cockpit/TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2501-FAIL.core
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 163 testSerialConsole (check_machines.TestMachines) # duration: 41s

First occurrence: 2018-09-03T15:54:38.797808 | revision 26b7a7d, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0905/092344.421392:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9874/devtools/browser/b1797af3-389b-42c5-9c92-406cf407ed8c
[0905/092344.458880:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 49934: Permission denied (13)
[0905/092344.599813:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 49962: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40077,"columnNumber":65,"url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40077,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40071,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":40019,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40078:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40072:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:40020:73)\n    at E (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9691/cockpit/$d155426538a0fc596513b4763c62e329e3e0c4c876806dd098b7abda27e444ec/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6dd098b7abda27e444ec/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2801-FAIL.log
Core dumps downloaded to /build/cockpit/TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2801-FAIL.core
Traceback (most recent call last):
  File "check-machines", line 896, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 66 testSerialConsole (check_machines.TestMachines) # duration: 33s

First occurrence: 2018-09-05T09:23:59.663278 | revision 679fda4acdf1f45945706f6ef7a22f2c05d96c0b, logs
Times recorded: 2
Latest occurrences:

  • 2018-09-05T09:23:59.663278 | revision 679fda4acdf1f45945706f6ef7a22f2c05d96c0b, logs
  • 2018-09-05T10:24:51.436609 | revision f891f7b, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0910/073349.589137:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9710/devtools/browser/ae77c14c-c7dd-4fc0-b6fb-5a42be966606
[0910/073349.647498:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 59655: Permission denied (13)
[0910/073349.829107:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 59680: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40128,"columnNumber":65,"url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":40128,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":40122,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":40070,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40129:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40123:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40071:73)\n    at E (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:555:46)\n    at O (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40129:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40123:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:40071:73)\n    at E (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:555:46)\n    at O (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9491/cockpit/$932e0c9c13b2687279d7556274e32ff40ee1ca8233118a6e1e647556fa116556/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…8a6e1e647556fa116556/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-fedora-testing-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "check-machines", line 896, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 71 testSerialConsole (check_machines.TestMachines) # duration: 39s

First occurrence: 2018-09-10T07:34:05.841149 | revision 6073d60
Times recorded: 6
Latest occurrences:

  • 2018-09-10T07:34:05.841149 | revision 6073d60
  • 2018-09-10T13:44:42.017888 | revision 6073d60, logs
  • 2018-09-10T21:40:50.845391 | revision 6073d60, logs
  • 2018-09-11T08:25:57.528005 | revision 6073d60, logs
  • 2018-09-11T09:32:21.226409 | revision 6073d60, logs
  • 2018-09-11T14:52:41.010440 | revision da5406edb1839e6448f5f5bb24bf8e8d2ae8022e, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0918/195307.614207:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10189/devtools/browser/06c387fe-644b-4062-9a49-675434925c20
[0918/195307.649839:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 44711: Permission denied (13)
[0918/195307.810773:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 44744: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40047,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":40047,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":40041,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":39989,"columnNumber":72},{"functionName":"S","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6f046a2240b327d94f4e/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 166 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 40s

First occurrence: 2018-09-18T19:53:22.377239 | revision b7296ae, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_dbus.TestMachinesDBus)
#
[0918/200325.912635:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9674/devtools/browser/429d3fa1-ae4c-47a1-b39d-5707ffef0dc6
[0918/200325.950269:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 59900: Permission denied (13)
[0918/200326.148209:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 59927: Permission denied (13)
> info: index.es6: Setting LibvirtDBus as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40047,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":40047,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":40041,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":39989,"columnNumber":72},{"functionName":"S","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$2e64d15217d56d85a5e1a43b6cea270903d12502edb96f046a2240b327d94f4e/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…6f046a2240b327d94f4e/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesDBus-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachinesDBus-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachinesDBus-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachinesDBus-testSerialConsole-fedora-testing-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 56 testSerialConsole (check_machines_dbus.TestMachinesDBus) # duration: 36s

First occurrence: 2018-09-18T20:03:39.474737 | revision b7296ae, logs
Times recorded: 1
Latest occurrences:

@cockpituous
Copy link
Contributor

cockpituous commented Jul 18, 2018

verify/rhel-7-5-distropkg
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0718/094824.903178:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9718/devtools/browser/a37c0a6f-b7e8-4d9b-aaf7-8d7be3325b79
[0718/094824.935237:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 36797: Permission denied (13)
[0718/094825.177386:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 36862: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531907305959.83, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '36862.8'}

not ok 129 testSerialConsole (check_machines.TestMachines) # duration: 99s

First occurrence: 2018-07-18T09:49:37.654318 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-18T09:49:37.654318 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0718/111530.380740:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9369/devtools/browser/96b290a1-6d3b-4fb8-b246-9c65e54701ee
[0718/111530.427962:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 86317: Permission denied (13)
[0718/111530.554766:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 86342: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531912531277.9, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '86342.8'}

not ok 129 testSerialConsole (check_machines.TestMachines) # duration: 102s

First occurrence: 2018-07-18T11:16:45.688137 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-18T11:16:45.688137 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0718/120107.602731:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9635/devtools/browser/e763e37a-a9b7-415f-8b16-3e206d96ba10
[0718/120107.638358:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 99143: Permission denied (13)
[0718/120107.850901:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 99182: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531915268482.88, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '99182.8'}

not ok 129 testSerialConsole (check_machines.TestMachines) # duration: 96s

First occurrence: 2018-07-18T12:02:19.362188 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-18T12:02:19.362188 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0718/134953.334276:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9421/devtools/browser/e0e26ff5-4798-427c-9118-893f0e7c72d5
[0718/134953.361851:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 77016: Permission denied (13)
[0718/134953.546535:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 77041: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531921794161.66, 'url': 'http://127.0.0.2:9191/cockpit/login', 'networkRequestId': '77041.8'}

not ok 129 testSerialConsole (check_machines.TestMachines) # duration: 94s

First occurrence: 2018-07-18T13:51:04.727818 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-18T13:51:04.727818 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[0718/144301.971224:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9911/devtools/browser/5b860b4a-d6da-449e-be4a-b99cb4baa61b
[0718/144302.016400:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 100794: Permission denied (13)
[0718/144302.183320:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 100820: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1531924983285.42, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '100820.8'}

not ok 129 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-18T14:44:16.203989 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-18T14:44:16.203989 | revision ccd719a30c5f203f8daa531831da2af36e886396, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0720/071859.739041:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9334/devtools/browser/c1cb5488-dc0d-4f90-965a-62a8ca598021
[0720/071859.773224:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38427: Permission denied (13)
[0720/071859.926396:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38483: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532071140365.26, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '38483.8'}

not ok 236 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-20T07:20:29.217160 | revision d6b6427, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0720/075400.929576:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9648/devtools/browser/e09f674d-9a23-41a4-a049-6a7e94968ffb
[0720/075400.997590:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38818: Permission denied (13)
[0720/075401.266986:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38879: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40082,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":40082,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":40076,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":40024,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40083:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40077:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40025:73)\n    at E (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40083:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40077:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:40025:73)\n    at E (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9191/cockpit/$e25082b754963ca9beaa0797347ffeec48a561e3/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…0797347ffeec48a561e3/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 123 testSerialConsole (check_machines.TestMachines) # duration: 43s

First occurrence: 2018-07-20T07:56:13.642928 | revision 23e6f326ab06905a7583c463821b1bf81bffe662, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-20T07:56:13.642928 | revision 23e6f326ab06905a7583c463821b1bf81bffe662, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0720/101718.531638:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10024/devtools/browser/10a7d311-337f-40f0-b176-2d6945e1977b
[0720/101718.574589:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 210812: Permission denied (13)
[0720/101718.769981:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 210908: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532081839356.7, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '210908.8'}

not ok 236 testSerialConsole (check_machines.TestMachines) # duration: 97s

First occurrence: 2018-07-20T10:18:30.215204 | revision 501edba6775a88f3170bd1abeadbe39aea51b636, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-20T10:18:30.215204 | revision 501edba6775a88f3170bd1abeadbe39aea51b636, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0720/110406.670933:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9824/devtools/browser/3690e7fd-ef95-401d-89df-9c0c7c28e957
[0720/110406.731857:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 194447: Permission denied (13)
[0720/110406.890671:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 194471: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532084647513.69, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '194471.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 103s

First occurrence: 2018-07-20T11:05:20.992693 | revision da3ef46
Times recorded: 1
Latest occurrences:

  • 2018-07-20T11:05:20.992693 | revision da3ef46

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
[0922/202423.570978:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9376/devtools/browser/ecc24a24-d854-465d-9163-44594a0c9645
[0922/202423.615791:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 41148: Permission denied (13)
[0922/202423.846505:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 41177: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9291/cockpit/$8de49ba8e3daeae58ba3e3502b4726e7db29e063/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…e3502b4726e7db29e063/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-5-distropkg-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 55s

First occurrence: 2018-09-22T20:24:43.098218 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

martinpitt added a commit to martinpitt/cockpit that referenced this issue Jul 23, 2018
Install a Chrome Devtools Protocol handler for unhandled exceptions, and
fail the next CDP command with it.  This got lost with the move from
PhantomJS to Chrome.

Some of our tests rely on failed ph_* function invocations, so we must
not log failures of ph_wait_cond(); these  are also technically
unhandled exceptions. So turn this into a proper `PhWaitCondTimeout`
error class, so that it can be identified reliably.

Handle cases where undefined value is passed to fail/success in
cdp-driver.js.

Adjust the naughty override for the XTerm.js crash (cockpit-project#9641) as this now
shows the actual underlying crash instead of just the followup element
wait timeout.

Closes cockpit-project#9639
@cockpituous
Copy link
Contributor

cockpituous commented Jul 25, 2018

verify/rhel-7-6
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/104650.726320:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9956/devtools/browser/0077bbfa-e3d4-4a73-bb68-cb8538dbb880
[0725/104650.803108:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 122730: Permission denied (13)
[0725/104651.028392:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 122759: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532515611936.38, 'url': 'http://127.0.0.2:9791/cockpit/login', 'networkRequestId': '122759.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-25T10:48:12.159940 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/111827.095981:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9640/devtools/browser/6cd5c684-ae2f-401a-809e-584dafb57fe3
[0725/111827.161689:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 23641: Permission denied (13)
[0725/111827.342614:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 23666: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532517507864.54, 'url': 'http://127.0.0.2:9491/cockpit/login', 'networkRequestId': '23666.8'}

not ok 179 testSerialConsole (check_machines.TestMachines) # duration: 100s

First occurrence: 2018-07-25T11:19:42.736805 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/125315.979558:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9285/devtools/browser/a6eb1666-4bd6-455a-8f20-0a2b4b1298fb
[0725/125316.075107:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 191840: Permission denied (13)
[0725/125316.273645:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 191867: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532523197529.75, 'url': 'http://127.0.0.2:9591/cockpit/login', 'networkRequestId': '191867.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 115s

First occurrence: 2018-07-25T12:54:36.578084 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/135510.590210:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9645/devtools/browser/2fef282d-fd6b-4ecc-a159-d99c72f742d4
[0725/135510.656141:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 125419: Permission denied (13)
[0725/135510.795782:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 125444: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532526911607.97, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '125444.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 102s

First occurrence: 2018-07-25T13:56:26.621766 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/151010.742747:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9837/devtools/browser/7a3898ec-26ee-4941-a2cb-cbaa24bfba4f
[0725/151010.806893:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 161546: Permission denied (13)
[0725/151010.962077:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 161575: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532531411856.64, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '161575.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-25T15:12:10.964494 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0725/164600.743395:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10169/devtools/browser/9de46a89-561e-4927-b4c6-f1cd98e647fa
[0725/164600.790660:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 162030: Permission denied (13)
[0725/164600.956954:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 162055: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532537161560.87, 'url': 'http://127.0.0.2:9091/cockpit/login', 'networkRequestId': '162055.8'}

not ok 43 testSerialConsole (check_machines.TestMachines) # duration: 98s

First occurrence: 2018-07-25T16:47:15.363801 | revision 9affa15, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0726/083750.360685:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9752/devtools/browser/5ab7f780-e9e1-4e18-bd67-db9325debcf9
[0726/083750.433496:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58493: Permission denied (13)
[0726/083750.564647:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58521: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532594271156.28, 'url': 'http://127.0.0.2:9691/cockpit/login', 'networkRequestId': '58521.8'}

not ok 61 testSerialConsole (check_machines.TestMachines) # duration: 111s

First occurrence: 2018-07-26T08:39:36.254629 | revision cd1e8dba08b304487e1dfcecf4b96d567379ac41, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-26T08:39:36.254629 | revision cd1e8dba08b304487e1dfcecf4b96d567379ac41, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0726/111842.385043:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.
ftruncate() failed: Permission denied

DevTools listening on ws://127.0.0.1:9409/devtools/browser/26fff0bf-53d8-44a5-8554-8641f7071684
[0726/111842.460614:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79329: Permission denied (13)
[0726/111843.172726:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 79361: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532603923655.13, 'url': 'http://127.0.0.2:9291/cockpit/login', 'networkRequestId': '79361.8'}

not ok 152 testSerialConsole (check_machines.TestMachines) # duration: 112s

First occurrence: 2018-07-26T11:19:57.983086 | revision c1b4bb6, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0726/204738.972028:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10073/devtools/browser/e01d42ad-bddb-41fd-97a3-3125b32b6cce
[0726/204739.040652:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58380: Permission denied (13)
[0726/204739.238857:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 58407: Permission denied (13)
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2501-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2501-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2501-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2501-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 903, in testSerialConsole
    b.wait_not_present("div.terminal canvas.xterm-text-layer")
  File "/build/cockpit/test/common/testlib.py", line 279, in wait_not_present
    return self.wait_js_func('!ph_is_present', selector)
  File "/build/cockpit/test/common/testlib.py", line 270, in wait_js_func
    self.wait_js_cond("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 267, in wait_js_cond
    self.raise_cdp_exception("timeout\nwait_js_cond", cond, result["exceptionDetails"], trailer)
  File "/build/cockpit/test/common/testlib.py", line 167, in raise_cdp_exception
    raise Error("%s(%s): %s" % (func, arg, msg))
testlib.Error: timeout
wait_js_cond(!ph_is_present("div.terminal canvas.xterm-text-layer")): condition did not become true
cdp: {'source': 'network', 'level': 'error', 'text': 'Failed to load resource: the server responded with a status of 401 (Authentication failed)', 'timestamp': 1532638059819.64, 'url': 'http://127.0.0.2:9391/cockpit/login', 'networkRequestId': '58407.8'}

not ok 69 testSerialConsole (check_machines.TestMachines) # duration: 110s

First occurrence: 2018-07-26T20:50:17.331738 | revision da82270011d85317fa3f1b2ea68ca01a17996d1d, logs
Times recorded: 1
Latest occurrences:

  • 2018-07-26T20:50:17.331738 | revision da82270011d85317fa3f1b2ea68ca01a17996d1d, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines.TestMachines)
#
[1030/095601.266165:ERROR:gpu_process_transport_factory.cc(1007)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9471/devtools/browser/5787ef61-6dd8-412d-893e-bf45693d2aa0
[1030/095601.269527:ERROR:zygote_host_impl_linux.cc(259)] Failed to adjust OOM score of renderer with pid 22855: Permission denied (13)
[1030/095601.424101:ERROR:zygote_host_impl_linux.cc(259)] Failed to adjust OOM score of renderer with pid 22898: Permission denied (13)
{"exceptionId":1,"text":"Uncaught","lineNumber":40092,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":40092,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":40086,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":40034,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":554,"columnNumber":45},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":570,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":1034,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":990,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":520,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":357,"columnNumber":33},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":575,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":1032,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":616,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":995,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":983,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js","lineNumber":647,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40093:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40087:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40035:73)\n    at E (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:521:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40093:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40087:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:40035:73)\n    at E (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:555:46)\n    at P (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:571:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:1035:21)\n    at I (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:617:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:996:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:991:85)\n    at b (http://127.0.0.2:9091/cockpit/$959e38b40c18d135bf9f8d33972292d2c41e2adefea482164c9c46095221aeed/machines/machines.js:521:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…82164c9c46095221aeed/machines/machines.js:521:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachines-testSerialConsole-rhel-7-6-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/bots/../test/verify/check-machines", line 893, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 149 testSerialConsole (check_machines.TestMachines) # duration: 46s

First occurrence: 2018-10-30T09:56:20.540908 | revision f834301, logs
Times recorded: 1
Latest occurrences:

larskarlitski pushed a commit that referenced this issue Jul 27, 2018
Install a Chrome Devtools Protocol handler for unhandled exceptions, and
fail the next CDP command with it.  This got lost with the move from
PhantomJS to Chrome.

Some of our tests rely on failed ph_* function invocations, so we must
not log failures of ph_wait_cond(); these  are also technically
unhandled exceptions. So turn this into a proper `PhWaitCondTimeout`
error class, so that it can be identified reliably.

Handle cases where undefined value is passed to fail/success in
cdp-driver.js.

Adjust the naughty override for the XTerm.js crash (#9641) as this now
shows the actual underlying crash instead of just the followup element
wait timeout.

Closes #9639
martinpitt added a commit to martinpitt/cockpit that referenced this issue Jul 27, 2018
Install a Chrome Devtools Protocol handler for unhandled exceptions, and
fail the next CDP command with it.  This got lost with the move from
PhantomJS to Chrome.

Some of our tests rely on failed ph_* function invocations, so we must
not log failures of ph_wait_cond(); these  are also technically
unhandled exceptions. So turn this into a proper `PhWaitCondTimeout`
error class, so that it can be identified reliably.

Handle cases where undefined value is passed to fail/success in
cdp-driver.js.

Adjust the naughty override for the XTerm.js crash (cockpit-project#9641) as this now
shows the actual underlying crash instead of just the followup element
wait timeout.

Closes cockpit-project#9639

Cherry-picked from upstream master commit 9d3c17b, so that the
naughty overrides match correctly.
martinpitt added a commit that referenced this issue Jul 29, 2018
Install a Chrome Devtools Protocol handler for unhandled exceptions, and
fail the next CDP command with it.  This got lost with the move from
PhantomJS to Chrome.

Some of our tests rely on failed ph_* function invocations, so we must
not log failures of ph_wait_cond(); these  are also technically
unhandled exceptions. So turn this into a proper `PhWaitCondTimeout`
error class, so that it can be identified reliably.

Handle cases where undefined value is passed to fail/success in
cdp-driver.js.

Adjust the naughty override for the XTerm.js crash (#9641) as this now
shows the actual underlying crash instead of just the followup element
wait timeout.

Closes #9639

Cherry-picked from upstream master commit 9d3c17b, so that the
naughty overrides match correctly.
@cockpituous
Copy link
Contributor

cockpituous commented Aug 1, 2018

verify/rhel-7-6-distropkg
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0920/140316.153803:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9590/devtools/browser/475dfd4b-22c5-44de-bdaa-0331ee776b1f
[0920/140316.197204:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 137771: Permission denied (13)
[0920/140316.391207:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 137798: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40047,"columnNumber":65,"url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":40047,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":40041,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":39989,"columnNumber":72},{"functionName":"S","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9691/cockpit/$57c21e414ae7238d351417e00ff30c58763770e13da93216275edffc094a8443/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…3216275edffc094a8443/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 86 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 45s

First occurrence: 2018-09-20T14:03:33.596785 | revision d137092, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0921/133931.820686:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9461/devtools/browser/8bd012fc-5d1b-47d3-bcb7-82b6d573aef4
[0921/133931.856277:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 367649: Permission denied (13)
[0921/133932.070310:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 367687: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"37","url":"http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9791/cockpit/$51ecfb3d54058a0d1d818f7816e638e70ab9dfc98c5037b265a0c50f8dc72e4a/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…37b265a0c50f8dc72e4a/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2901-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2901-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2901-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2901-FAIL.log
Traceback (most recent call last):
  File "machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 124 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 58s

First occurrence: 2018-09-21T13:39:54.986505 | revision cc8c922f06bb843e89da7891135cca238a855621, logs
Times recorded: 2
Latest occurrences:

  • 2018-09-21T13:39:54.986505 | revision cc8c922f06bb843e89da7891135cca238a855621, logs
  • 2018-09-21T13:48:03.042922 | revision 764987a034a8ea10ad1af5b850ea9c9e3c60ae8a, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0921/144017.528053:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10054/devtools/browser/172bfce0-7846-4a0d-bc3d-97c436e3bc6e
[0921/144017.578537:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 266180: Permission denied (13)
[0921/144017.783519:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 266208: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…1279bffa7ce404cd7377/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 922, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 124 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 72s

First occurrence: 2018-09-21T14:40:46.952297 | revision 450218d6f90975f1cdde92f6d75156036bd90ade, logs
Times recorded: 1
Latest occurrences:

  • 2018-09-21T14:40:46.952297 | revision 450218d6f90975f1cdde92f6d75156036bd90ade, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0920/124733.183598:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9797/devtools/browser/5e923a68-9fcf-4835-b64b-92246519caa0
[0920/124733.226614:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 174633: Permission denied (13)
[0920/124733.376445:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 174659: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40047,"columnNumber":65,"url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":40047,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":40041,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":39989,"columnNumber":72},{"functionName":"S","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"55","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9491/cockpit/$d0427c32ac91e59b974178bdabc65ad796e9a2dc1a53f0a847244fcacbe727c1/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…f0a847244fcacbe727c1/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
  File "machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 112 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 57s

First occurrence: 2018-09-20T12:47:56.158340 | revision 8ce42bfd71ad046547460faa76c7b14ee109a9dd, logs
Times recorded: 6
Latest occurrences:

  • 2018-09-20T12:47:56.158340 | revision 8ce42bfd71ad046547460faa76c7b14ee109a9dd, logs
  • 2018-09-21T11:12:05.026496 | revision 711934212f9f606656de0756edf0dfe80c431f5d, logs
  • 2018-09-21T12:13:22.533339 | revision 41e9211, logs
  • 2018-09-21T13:57:55.648759 | revision 3108f9e8c33e6efc82797ce3910257fa819f07af, logs
  • 2018-09-21T15:21:35.178001 | revision f22be59500edf885105e1ea16cfeaf1c325e2902, logs
  • 2018-09-21T16:28:38.859557 | revision daf620b50a66444be7afd2c41439046174472990, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
error: package libvirt-dbus is not installed
ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory
[0921/171917.096916:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10218/devtools/browser/d361cf1b-04ca-4150-a732-9bf0bd2e4139
[0921/171917.124654:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38949: Permission denied (13)
[0921/171917.316603:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 38974: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$c94bccc235a52ac0388286ae15dea609467c498b82631279bffa7ce404cd7377/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…1279bffa7ce404cd7377/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 922, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 49s

First occurrence: 2018-09-21T17:19:36.404456 | revision 966821a, logs
Times recorded: 1
Latest occurrences:


``` # ---------------------------------------------------------------------- # testSerialConsole (check_machines_virsh.TestMachinesVirsh) # error: package libvirt-dbus is not installed ls: cannot access /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED: No such file or directory [0920/165306.279688:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9330/devtools/browser/fc7da550-d462-44d2-879d-86bc6b7f8ac2
[0920/165306.327488:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 76227: Permission denied (13)
[0920/165306.475027:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 76252: Permission denied (13)

info: index.es6: Setting Libvirt as virt provider.
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:40043:66)\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:40037:29)\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:39985:73)\n at E (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:570:46)\n at O (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:586:18)\n at t.forceUpdate (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1050:21)\n at I (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:632:62)\n at R.updateComponent (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1011:17)\n at R.emitUpdate (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1006:85)\n at b (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:40043:66)\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:40037:29)\n at t.value (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:39985:73)\n at E (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:570:46)\n at O (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:586:18)\n at t.forceUpdate (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1050:21)\n at I (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:632:62)\n at R.updateComponent (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1011:17)\n at R.emitUpdate (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:1006:85)\n at b (http://127.0.0.2:9491/cockpit/$ef172fec8d7fa40803c2668f2c086e7418709e4337604df74d855e8f56342176/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…4df74d855e8f56342176/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-rhel-7-6-distropkg-127.0.0.2-2601-FAIL.log
Traceback (most recent call last):
File "machineslib.py", line 917, in testSerialConsole
b.click("#console-type-select li > a:contains(Serial Console)")
File "testlib.py", line 205, in click
self.call_js_func('ph_click', selector, force)
File "testlib.py", line 187, in call_js_func
return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
File "testlib.py", line 171, in eval_js
silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
File "cdp.py", line 85, in invoke
res = self.command(cmd)
File "cdp.py", line 112, in command
raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 48s

First occurrence: 2018-09-20T16:53:25.677698 | revision 5037005ac6f3cba997c8cc9f394606f92a0219d8, [logs](https://209.132.184.41:8493/logs/pull-10113-20180920-162222-5037005a-verify-rhel-7-6-distropkg/log.html)
Times recorded: 6
Latest occurrences:

- 2018-09-20T16:53:25.677698 | revision 5037005ac6f3cba997c8cc9f394606f92a0219d8, [logs](https://209.132.184.41:8493/logs/pull-10113-20180920-162222-5037005a-verify-rhel-7-6-distropkg/log.html)
- 2018-09-20T21:06:17.162660 | revision 75eff1c8617516e344b675bfa66870226dec073b
- 2018-09-21T07:43:25.682087 | revision bc07816b4bfe30eface0d885eab2a47541d233d7, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10125-20180921-071313-bc07816b-verify-rhel-7-6-distropkg/log.html)
- 2018-09-21T09:34:03.104045 | revision 9078d774ba50c9b6ab3069b6d40a37c911b64e3c, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10123-20180921-090202-9078d774-verify-rhel-7-6-distropkg/log.html)
- 2018-09-21T10:18:25.784894 | revision 96a5bc9cfae91158f34c351f2833ed47c2ec7552, [logs](http://fedorapeople.org/groups/cockpit/logs/pull-10126-20180921-094343-96a5bc9c-verify-rhel-7-6-distropkg/log.html)
- 2018-09-22T20:19:16.514409 | revision 2ed67fd1cbd7330db0701b56dfeec85dd1e06dcf

@cockpituous
Copy link
Contributor

cockpituous commented Sep 3, 2018

verify/fedora-29
Ooops, it happened again


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_dbus.TestMachinesDBus)
#
[0921/144858.834416:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9524/devtools/browser/ada06f5e-03f4-495c-beeb-d6f2bd547402
[0921/144858.884964:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 244492: Permission denied (13)
[0921/144900.101831:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 244542: Permission denied (13)
> info: index.es6: Setting LibvirtDBus as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40046,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":40046,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":40040,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":39988,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:40047:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:40041:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:39989:73)\n    at E (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:40047:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:40041:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:39989:73)\n    at E (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$b759b9fd94122eef50e4474edba0cb830679c104e2c267a9349040d072497b59/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…67a9349040d072497b59/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 86 testSerialConsole (check_machines_dbus.TestMachinesDBus) # duration: 55s

First occurrence: 2018-09-21T14:49:22.146777 | revision 41e9211, logs
Times recorded: 4
Latest occurrences:

  • 2018-09-21T14:49:22.146777 | revision 41e9211, logs
  • 2018-09-21T14:56:17.550413 | revision 96a5bc9, logs
  • 2018-09-21T15:54:59.625834 | revision f22be59500edf885105e1ea16cfeaf1c325e2902, logs
  • 2018-09-21T16:14:26.269800 | revision 96a5bc9, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0920/131454.378104:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9455/devtools/browser/326c144d-fd19-4680-8e52-45964f0aba7b
[0920/131454.421630:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 255079: Permission denied (13)
[0920/131454.549241:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 255104: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9191/cockpit/$172dc993f461670dada7bd9a82136ebc6b1bcb9594bc9f42f1b90face458b68d/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…9f42f1b90face458b68d/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2301-FAIL.log
Traceback (most recent call last):
  File "machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 112 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 48s

First occurrence: 2018-09-20T13:15:08.700844 | revision f86495322dada1a7b8dc4ca28de984e52b28eb61, logs
Times recorded: 5
Latest occurrences:

  • 2018-09-20T13:15:08.700844 | revision f86495322dada1a7b8dc4ca28de984e52b28eb61, logs
  • 2018-09-21T12:08:38.885692 | revision 96a5bc9, logs
  • 2018-09-21T14:15:46.995854 | revision 3108f9e8c33e6efc82797ce3910257fa819f07af, logs
  • 2018-09-21T15:21:28.189302 | revision 711934212f9f606656de0756edf0dfe80c431f5d, logs
  • 2018-09-21T16:27:34.195343 | revision daf620b50a66444be7afd2c41439046174472990, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
[0921/165611.554571:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9278/devtools/browser/da033207-59bd-4d64-9621-3d96ca179952
[0921/165611.581832:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 530263: Permission denied (13)
[0921/165611.712263:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 530328: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9691/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…fbab749717f97e8089c5/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2801-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2801-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2801-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2801-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 922, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 124 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 46s

First occurrence: 2018-09-21T16:56:24.753717 | revision 966821a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_dbus.TestMachinesDBus)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0921/165921.995750:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9810/devtools/browser/c4f45e9a-90d6-416c-89c9-a7aef4e98932
[0921/165922.022719:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 535633: Permission denied (13)
[0921/165922.191350:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 535658: Permission denied (13)
> info: index.es6: Setting LibvirtDBus as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9091/cockpit/$eb6c1ab6fa1766d5246c5ea90b55c7064545961fcab2fbab749717f97e8089c5/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…fbab749717f97e8089c5/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2201-FAIL.png
Wrote HTML dump to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2201-FAIL.html
Wrote JS log to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2201-FAIL.js.log
Journal extracted to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2201-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 922, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 86 testSerialConsole (check_machines_dbus.TestMachinesDBus) # duration: 31s

First occurrence: 2018-09-21T16:59:35.305430 | revision 966821a, logs
Times recorded: 1
Latest occurrences:


# ----------------------------------------------------------------------
# testSerialConsole (check_machines_dbus.TestMachinesDBus)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0920/105730.731571:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:9898/devtools/browser/08bed77f-869e-4abf-bed9-ca1630563c24
[0920/105730.773197:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 17819: Permission denied (13)
[0920/105730.923441:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 17845: Permission denied (13)
> info: index.es6: Setting LibvirtDBus as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40047,"columnNumber":65,"url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":40047,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":40041,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":39989,"columnNumber":72},{"functionName":"S","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:40048:66)\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:40042:29)\n    at t.value (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:39990:73)\n    at S (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9591/cockpit/$517e994e03c531fed72a0881f2ecd49f37f98f68e555fc44df36707463b9493f/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…fc44df36707463b9493f/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2701-FAIL.png
Wrote HTML dump to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2701-FAIL.html
Wrote JS log to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2701-FAIL.js.log
Journal extracted to TestMachinesDBus-testSerialConsole-fedora-29-127.0.0.2-2701-FAIL.log
Traceback (most recent call last):
  File "machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 226 testSerialConsole (check_machines_dbus.TestMachinesDBus) # duration: 38s

First occurrence: 2018-09-20T10:57:45.453594 | revision 8cf1482, logs
Times recorded: 11
Latest occurrences:

  • 2018-09-20T12:57:30.703369 | revision f86495322dada1a7b8dc4ca28de984e52b28eb61, logs
  • 2018-09-20T20:57:30.869033 | revision 75eff1c, logs
  • 2018-09-21T07:53:56.302612 | revision 5037005, logs
  • 2018-09-21T09:14:17.133921 | revision 9078d77, logs
  • 2018-09-21T09:34:18.845276 | revision 96a5bc9, logs
  • 2018-09-21T11:41:52.627580 | revision 96a5bc9, logs
  • 2018-09-21T14:00:16.798034 | revision 9078d77, logs
  • 2018-09-21T14:51:21.454327 | revision 711934212f9f606656de0756edf0dfe80c431f5d, logs
  • 2018-09-21T16:05:09.126080 | revision daf620b50a66444be7afd2c41439046174472990, logs
  • 2018-09-22T19:57:46.592356 | revision 2ed67fd, logs

# ----------------------------------------------------------------------
# testSerialConsole (check_machines_virsh.TestMachinesVirsh)
#
ls: cannot access '/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_NESTED': No such file or directory
[0922/202048.995370:ERROR:gpu_process_transport_factory.cc(1017)] Lost UI shared context.

DevTools listening on ws://127.0.0.1:10063/devtools/browser/3213d233-5bab-4ef7-a219-51b0c6b9f8d4
[0922/202049.026175:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39839: Permission denied (13)
[0922/202049.158937:ERROR:zygote_host_impl_linux.cc(267)] Failed to adjust OOM score of renderer with pid 39866: Permission denied (13)
> info: index.es6: Setting Libvirt as virt provider.
> warning: Failed to query RHEL subscription status: 
{"exceptionId":1,"text":"Uncaught","lineNumber":40042,"columnNumber":65,"url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","stackTrace":{"callFrames":[{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":40042,"columnNumber":65},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":40036,"columnNumber":28},{"functionName":"value","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":39984,"columnNumber":72},{"functionName":"E","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":569,"columnNumber":45},{"functionName":"O","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":585,"columnNumber":17},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1049,"columnNumber":20},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"emitUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1005,"columnNumber":84},{"functionName":"b","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":535,"columnNumber":84},{"functionName":"n","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":372,"columnNumber":33},{"functionName":"P","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":590,"columnNumber":99},{"functionName":"forceUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1047,"columnNumber":41},{"functionName":"I","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":631,"columnNumber":61},{"functionName":"updateComponent","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":1010,"columnNumber":16},{"functionName":"batchUpdate","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":998,"columnNumber":77},{"functionName":"H","scriptId":"34","url":"http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js","lineNumber":662,"columnNumber":34},{"functionName":"ph_mouse_event","scriptId":"15","url":"","lineNumber":107,"columnNumber":12},{"functionName":"ph_click","scriptId":"15","url":"","lineNumber":125,"columnNumber":4},{"functionName":"","scriptId":"53","url":"","lineNumber":0,"columnNumber":0}]},"exception":{"type":"object","subtype":"error","className":"TypeError","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:536:85)","objectId":"{\"injectedScriptId\":5,\"id\":1}","preview":{"type":"object","subtype":"error","description":"TypeError: Cannot read property 'dimensions' of undefined\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40043:66)\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:40037:29)\n    at t.value (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:39985:73)\n    at E (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:570:46)\n    at O (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:586:18)\n    at t.forceUpdate (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1050:21)\n    at I (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:632:62)\n    at R.updateComponent (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1011:17)\n    at R.emitUpdate (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:1006:85)\n    at b (http://127.0.0.2:9291/cockpit/$7256bc6d97eef048266b79f8329b2ce04adf0887d56f28534b382f87b5b55bea/machines/machines.js:536:85)","overflow":false,"properties":[{"name":"stack","type":"string","value":"TypeError: Cannot read property 'dimensions' of un…28534b382f87b5b55bea/machines/machines.js:536:85)"},{"name":"message","type":"string","value":"Cannot read property 'dimensions' of undefined"}]}},"executionContextId":5}
Wrote screenshot to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2401-FAIL.png
Wrote HTML dump to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2401-FAIL.html
Wrote JS log to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2401-FAIL.js.log
Journal extracted to TestMachinesVirsh-testSerialConsole-fedora-29-127.0.0.2-2401-FAIL.log
Traceback (most recent call last):
  File "/build/cockpit/test/verify/machineslib.py", line 917, in testSerialConsole
    b.click("#console-type-select li > a:contains(Serial Console)")
  File "/build/cockpit/test/common/testlib.py", line 205, in click
    self.call_js_func('ph_click', selector, force)
  File "/build/cockpit/test/common/testlib.py", line 187, in call_js_func
    return self.eval_js("%s(%s)" % (func, ','.join(map(jsquote, args))))
  File "/build/cockpit/test/common/testlib.py", line 171, in eval_js
    silent=False, awaitPromise=True, returnByValue=True, no_trace=no_trace)
  File "/build/cockpit/test/common/cdp.py", line 85, in invoke
    res = self.command(cmd)
  File "/build/cockpit/test/common/cdp.py", line 112, in command
    raise RuntimeError(res["error"])
RuntimeError: TypeError: Cannot read property 'dimensions' of undefined

not ok 109 testSerialConsole (check_machines_virsh.TestMachinesVirsh) # duration: 46s

First occurrence: 2018-09-22T20:21:01.823218 | revision 2ed67fd, logs
Times recorded: 1
Latest occurrences:

@martinpitt
Copy link
Member Author

This was fixed a long time ago, so let's close this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants