[TIMOB-25122] Windows: Mocha test Titanium.UI.Layout centerXPrecedence test failure
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Needs more info |
| Resolution Date | 2019-05-08T01:46:51.000+0000 |
| Affected Version/s | Release 8.0.0 |
| Fix Version/s | n/a |
| Components | Windows |
| Labels | engSchedule, failure-reviewed |
| Reporter | Eric Merriman |
| Assignee | Kota Iguchi |
| Created | 2017-08-11T16:22:01.000+0000 |
| Updated | 2019-05-20T14:14:41.000+0000 |
Description
Titanium.UI.Layout centerXPrecedence please investigate the failure.
Please use https://github.com/ewanharris/titanium-mobile-mocha-suite/tree/TIMOB-24816 to find the related test
You can use https://github.com/ewanharris/mocha-test to quickly debug (most) mocha tests)
Error "error":{"name":"AssertionError","actual":150,"expected":100,"operator":"to equal","message":"expected 150 to equal 100","generatedMessage":true,"stack":"/should.js:1411:20\n/your-test.js:39:37","showDiff":true} From https://github.com/ewanharris/titanium-mobile-mocha-suite/blob/4b75b3f057ad8771bc0d0f2ebf249096462a9207/Resources/ti.ui.layout.test.js#L651
Still valid, on windows desktop now errors with
AssertionError: expected 58 to equal 100Hmm I was not able to reproduce this on my end. I [pushed these tests on Jenkins](https://github.com/appcelerator/titanium_mobile_windows/pull/1387) too and Jenkins passes them. See
centerXPrecedenceresult in the [test log](https://jenkins.appcelerator.org/blue/rest/organizations/jenkins/pipelines/titanium-sdk/pipelines/titanium_mobile_windows/branches/PR-1387/runs/1/nodes/144/steps/194/log/?start=0).I would resolve this as "Need more info" for now as I was not able to reproduce this locally as well as on Jenkins. Test Code:
var view = Ti.UI.createView({ height: 200, width: 200, backgroundColor: 'yellow' }), viewChild = Ti.UI.createView({ backgroundColor: 'red', center: { x: 100, }, right: 50 }); var win = Ti.UI.createWindow(); viewChild.addEventListener('postlayout', function () { console.log(viewChild.size.width + ' should eql 100'); }); view.add(viewChild); win.add(view); win.open();[~kiguchi], same comment as in TIMOB-25123, is the issue no longer reproducible in Jenkins?
[~amukherjee] Right. Jenkins no longer fails the test.
[Center precedence layout tests are enabled now](https://github.com/appcelerator/titanium-mobile-mocha-suite/pull/157) and [Jenkins passes them all](https://jenkins.appcelerator.org/blue/organizations/jenkins/titanium-sdk%2Ftitanium_mobile_windows/detail/master/77/pipeline).
Closing ticket as tests are running fine on Jenkins.