Report generated on 07-Feb-2023 at 09:17:59 by pytest-html v3.1.1
| BUILD_ID | 402 |
| BUILD_NUMBER | 402 |
| BUILD_TAG | jenkins-firefox-ios-sync-integration-tests-402 |
| BUILD_URL | http://localhost:8080/job/firefox-ios-sync-integration-tests/402/ |
| CI | true |
| EXECUTOR_NUMBER | 0 |
| GIT_BRANCH | origin/main |
| GIT_COMMIT | e1ffd568a5f618bd67b00e7c1eff21e43b04bda9 |
| GIT_URL | https://github.com/mozilla-mobile/firefox-ios.git |
| JENKINS_URL | http://localhost:8080/ |
| JOB_NAME | firefox-ios-sync-integration-tests |
| NODE_NAME | master |
| Packages | {"pluggy": "1.0.0", "py": "1.11.0", "pytest": "7.1.3"} |
| Platform | macOS-13.0-arm64-arm-64bit |
| Plugins | {"fxa": "1.4.0", "html": "3.1.1", "metadata": "2.0.2"} |
| Python | 3.9.13 |
| WORKSPACE | /Users/administrator/.jenkins/workspace/firefox-ios-sync-integration-tests |
| application_buildid | 20230207043534 |
| application_changeset | b34aa450222401ca858232a109baae091f50c9d8 |
| application_display_name | Firefox Nightly |
| application_id | {ec8030f7-c20a-464f-9b0e-13a3a9e97384} |
| application_name | Firefox |
| application_remotingname | firefox-nightly |
| application_repository | https://hg.mozilla.org/mozilla-central |
| application_vendor | Mozilla |
| application_version | 111.0a1 |
| platform_buildid | 20230207043534 |
| platform_changeset | b34aa450222401ca858232a109baae091f50c9d8 |
| platform_repository | https://hg.mozilla.org/mozilla-central |
| platform_version | 111.0a1 |
9 tests ran in 1009.87 seconds.
(Un)check the boxes to filter the results.
8 passed, 0 skipped, 1 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | test_integration.py::test_sync_tabs_from_desktop | 119.11 | Firefox Sync Sync Firefox TPS XCodeBuild Sync Sync Firefox TPS XCodeBuild |
|
tps = <SyncIntegrationTests.tps.TPS object at 0x10768ac70> xcodebuild = <SyncIntegrationTests.xcodebuild.XCodeBuild object at 0x10752a4f0> def test_sync_tabs_from_desktop(tps, xcodebuild): tps.run('test_tabs_desktop.js') > xcodebuild.test('XCUITests/IntegrationTests/testFxASyncTabsDesktop') test_integration.py:32: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ xcodebuild.py:33: in test out = subprocess.check_output( /opt/homebrew/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py:424: in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ input = None, capture_output = False, timeout = None, check = True popenargs = (['xcodebuild', 'test', '-scheme', 'Fennec_Enterprise_XCUITests', '-destination', 'platform=iOS Simulator,name=iPhone 14', ...],) kwargs = {'cwd': '/Users/administrator/.jenkins/workspace/firefox-ios-sync-integration-tests/SyncIntegrationTests/..', 'stderr': -2, 'stdout': -1, 'universal_newlines': True} process = <Popen: returncode: 65 args: ['xcodebuild', 'test', '-scheme', 'Fennec_Enter...> stdout = 'Command line invocation:\n /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild test -scheme Fennec_Enter...0800.xcresult\n\nFailing tests:\n\tIntegrationTests.testFxASyncTabsDesktop()\n\n** TEST FAILED **\n\nTesting started\n' stderr = None, retcode = 65 def run(*popenargs, input=None, capture_output=False, timeout=None, check=False, **kwargs): """Run command with arguments and return a CompletedProcess instance. The returned instance will have attributes args, returncode, stdout and stderr. By default, stdout and stderr are not captured, and those attributes will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. If check is True and the exit code was non-zero, it raises a CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute, and output & stderr attributes if those streams were captured. If timeout is given, and the process takes too long, a TimeoutExpired exception will be raised. There is an optional argument "input", allowing you to pass bytes or a string to the subprocess's stdin. If you use this argument you may not also use the Popen constructor's "stdin" argument, as it will be used internally. By default, all communication is in bytes, and therefore any "input" should be bytes, and the stdout and stderr will be bytes. If in text mode, any "input" should be a string, and stdout and stderr will be strings decoded according to locale encoding, or by "encoding" if set. Text mode is triggered by setting any of text, encoding, errors or universal_newlines. The other arguments are the same as for the Popen constructor. """ if input is not None: if kwargs.get('stdin') is not None: raise ValueError('stdin and input arguments may not both be used.') kwargs['stdin'] = PIPE if capture_output: if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None: raise ValueError('stdout and stderr arguments may not be used ' 'with capture_output.') kwargs['stdout'] = PIPE kwargs['stderr'] = PIPE with Popen(*popenargs, **kwargs) as process: try: stdout, stderr = process.communicate(input, timeout=timeout) except TimeoutExpired as exc: process.kill() if _mswindows: # Windows accumulates the output in a single blocking # read() call run on child threads, with the timeout # being done in a join() on those threads. communicate() # _after_ kill() is required to collect that and add it # to the exception. exc.stdout, exc.stderr = process.communicate() else: # POSIX _communicate already populated the output so # far into the TimeoutExpired exception. process.wait() raise except: # Including KeyboardInterrupt, communicate handled that. process.kill() # We don't call process.wait() as .__exit__ does that for us. raise retcode = process.poll() if check and retcode: > raise CalledProcessError(retcode, process.args, output=stdout, stderr=stderr) E subprocess.CalledProcessError: Command '['xcodebuild', 'test', '-scheme', 'Fennec_Enterprise_XCUITests', '-destination', 'platform=iOS Simulator,name=iPhone 14', '-only-testing:XCUITests/IntegrationTests/testFxASyncTabsDesktop', '-testPlan', 'SyncIntegrationTestPlan']' returned non-zero exit status 65. /opt/homebrew/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py:528: CalledProcessError -------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-90b87da653@restmail.net', password='tJzPopxG') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-90b87da653@restmail.net', password='tJzPopxG') -------------------------------Captured log call-------------------------------- INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp19g25j6s.mozrunner INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncTabsDesktop -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-90b87da653@restmail.net', password='tJzPopxG') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp19g25j6s.mozrunner/weave/logs/error-sync-1675789922229.txt --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp19g25j6s.mozrunner/weave/logs/success-sync-1675789923807.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_desktop0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_desktop0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_desktop0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_bookmark_from_device | 144.20 | Firefox Sync Firefox TPS XCodeBuild Sync Firefox TPS XCodeBuild |
|
-----------------------------Captured stderr setup------------------------------ 0% | | ETA: --:--:-- 0.0 s/B 1% | | ETA: 0:00:06 23.1 MiB/s 3% |# | ETA: 0:00:03 36.2 MiB/s 7% |### | ETA: 0:00:02 44.2 MiB/s 12% |##### | ETA: 0:00:02 52.3 MiB/s 16% |####### | ETA: 0:00:02 51.7 MiB/s 18% |######## | ETA: 0:00:02 53.7 MiB/s 21% |######### | ETA: 0:00:02 55.2 MiB/s 25% |########### | ETA: 0:00:01 59.6 MiB/s 30% |############# | ETA: 0:00:01 63.7 MiB/s 35% |############### | ETA: 0:00:01 67.2 MiB/s 39% |################# | ETA: 0:00:01 69.4 MiB/s 43% |################### | ETA: 0:00:01 70.5 MiB/s 45% |#################### | ETA: 0:00:01 70.1 MiB/s 49% |###################### | ETA: 0:00:01 71.8 MiB/s 53% |####################### | ETA: 0:00:00 72.5 MiB/s 56% |######################### | ETA: 0:00:00 71.5 MiB/s 62% |########################### | ETA: 0:00:00 71.6 MiB/s 67% |############################## | ETA: 0:00:00 73.2 MiB/s 70% |############################### | ETA: 0:00:00 74.4 MiB/s 75% |################################## | ETA: 0:00:00 76.1 MiB/s 81% |#################################### | ETA: 0:00:00 77.2 MiB/s 84% |###################################### | ETA: 0:00:00 77.3 MiB/s 88% |####################################### | ETA: 0:00:00 76.9 MiB/s 93% |########################################## | ETA: 0:00:00 77.0 MiB/s 98% |############################################ | ETA: 0:00:00 78.1 MiB/s 100% |#############################################| Time: 0:00:01 77.8 MiB/s mozversion INFO | application_buildid: 20230207043534 mozversion INFO | application_changeset: b34aa450222401ca858232a109baae091f50c9d8 mozversion INFO | application_display_name: Firefox Nightly mozversion INFO | application_id: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} mozversion INFO | application_name: Firefox mozversion INFO | application_remotingname: firefox-nightly mozversion INFO | application_repository: https://hg.mozilla.org/mozilla-central mozversion INFO | application_vendor: Mozilla mozversion INFO | application_version: 111.0a1 mozversion INFO | platform_buildid: 20230207043534 mozversion INFO | platform_changeset: b34aa450222401ca858232a109baae091f50c9d8 mozversion INFO | platform_repository: https://hg.mozilla.org/mozilla-central mozversion INFO | platform_version: 111.0a1 -------------------------------Captured log setup------------------------------- INFO mozdownload.scraper:scraper.py:420 Retrieving the build status file from https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central/ INFO mozdownload.scraper:scraper.py:467 Retrieving list of builds from https://archive.mozilla.org/pub/firefox/nightly/2023/02/ INFO mozdownload.scraper:scraper.py:333 Found 1 build: 2023-02-07-04-35-34-mozilla-central INFO mozdownload.scraper:scraper.py:503 Selected build: 2023-02-07-04-35-34-mozilla-central INFO mozdownload.scraper:scraper.py:270 Downloading from: https://archive.mozilla.org/pub/firefox/nightly/2023/02/2023-02-07-04-35-34-mozilla-central/firefox-111.0a1.en-US.mac.dmg INFO mozdownload.scraper:scraper.py:271 Saving as: /Users/administrator/.jenkins/workspace/firefox-ios-sync-integration-tests/SyncIntegrationTests/.pytest_cache/d/firefox/2023-02-07-04-35-34-mozilla-central-firefox-111.0a1.en-US.mac.dmg INFO mozdownload.scraper:scraper.py:262 File has already been downloaded: /Users/administrator/.jenkins/workspace/firefox-ios-sync-integration-tests/SyncIntegrationTests/.pytest_cache/d/tps-Q2oAtnmOQMCQLQqMUngQVw/tps.xpi INFO root:plugin.py:93 Created: FxAccount(email='pytest-fc79461db6@restmail.net', password='ZvITwwxp') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-fc79461db6@restmail.net', password='ZvITwwxp') -------------------------------Captured log call-------------------------------- INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncBookmark -testPlan SyncIntegrationTestPlan INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpy7ubmw0f.mozrunner -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-fc79461db6@restmail.net', password='ZvITwwxp') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpy7ubmw0f.mozrunner/weave/logs/error-sync-1675789413206.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_device0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_device0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_device0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_bookmark_from_desktop | 101.28 | Firefox Sync Sync Firefox TPS XCodeBuild Sync Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-18345db217@restmail.net', password='oZUxpyKu') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-18345db217@restmail.net', password='oZUxpyKu') -------------------------------Captured log call-------------------------------- INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpdph_oz8z.mozrunner INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncBookmarkDesktop -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-18345db217@restmail.net', password='oZUxpyKu') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpdph_oz8z.mozrunner/weave/logs/success-sync-1675789423731.txt --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpdph_oz8z.mozrunner/weave/logs/error-sync-1675789422245.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_deskto0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_deskto0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_bookmark_from_deskto0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_history_from_device | 94.98 | Firefox Sync Firefox TPS XCodeBuild Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-afd9983032@restmail.net', password='SzmiDxDB') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-afd9983032@restmail.net', password='SzmiDxDB') -------------------------------Captured log call-------------------------------- INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncHistory -testPlan SyncIntegrationTestPlan INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp43dz2lak.mozrunner -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-afd9983032@restmail.net', password='SzmiDxDB') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp43dz2lak.mozrunner/weave/logs/error-sync-1675789609633.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_device0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_device0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_device0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_tabs_from_device | 97.92 | Firefox Sync Firefox TPS XCodeBuild Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-d286d36495@restmail.net', password='yQXtgUdZ') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-d286d36495@restmail.net', password='yQXtgUdZ') -------------------------------Captured log call-------------------------------- INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncTabs -testPlan SyncIntegrationTestPlan INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp9uvns7xk.mozrunner -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-d286d36495@restmail.net', password='yQXtgUdZ') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmp9uvns7xk.mozrunner/weave/logs/error-sync-1675789707778.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_device0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_device0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_tabs_from_device0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_history_from_desktop | 102.08 | Firefox Sync Sync Firefox TPS XCodeBuild Sync Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-1bf0164eeb@restmail.net', password='VioKbIvT') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-1bf0164eeb@restmail.net', password='VioKbIvT') -------------------------------Captured log call-------------------------------- INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpk0ygbusd.mozrunner INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncHistoryDesktop -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-1bf0164eeb@restmail.net', password='VioKbIvT') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpk0ygbusd.mozrunner/weave/logs/error-sync-1675789716168.txt --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpk0ygbusd.mozrunner/weave/logs/success-sync-1675789717662.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_desktop0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_desktop0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_history_from_desktop0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_logins_from_desktop | 103.61 | Firefox Sync Sync Firefox TPS XCodeBuild Sync Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-3d413c272@restmail.net', password='amgejwkz') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-3d413c272@restmail.net', password='amgejwkz') -------------------------------Captured log call-------------------------------- INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmph20k9w90.mozrunner INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncPasswordDesktop -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-3d413c272@restmail.net', password='amgejwkz') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmph20k9w90.mozrunner/weave/logs/error-sync-1675789818743.txt --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmph20k9w90.mozrunner/weave/logs/success-sync-1675789820387.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_logins_from_desktop0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_logins_from_desktop0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_logins_from_desktop0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_disconnect_connect_fxa | 146.52 | Firefox Sync Sync Firefox TPS XCodeBuild Sync Sync Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-8c0ca8d0bb@restmail.net', password='vvOETrRl') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-8c0ca8d0bb@restmail.net', password='vvOETrRl') -------------------------------Captured log call-------------------------------- INFO root:tps.py:32 Running: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/firefox0/Firefox Nightly.app/Contents/MacOS/firefox -marionette INFO root:tps.py:33 Using profile at: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpygcv3ngt.mozrunner INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxADisconnectConnect -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-8c0ca8d0bb@restmail.net', password='vvOETrRl') --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpygcv3ngt.mozrunner/weave/logs/success-sync-1675790043863.txt --------------------------------------Sync-------------------------------------- Log: /var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/tmpygcv3ngt.mozrunner/weave/logs/error-sync-1675790042137.txt ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_disconnect_connect_f0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_disconnect_connect_f0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_disconnect_connect_f0/xcodebuild.log | |||
| Passed | test_integration.py::test_sync_china_fxa_server | 98.35 | Sync Sync Firefox TPS Sync Sync Firefox TPS XCodeBuild Firefox TPS XCodeBuild |
|
-------------------------------Captured log setup------------------------------- INFO root:plugin.py:93 Created: FxAccount(email='pytest-5d2986f7d5@restmail.net', password='HXrSZsXZ') INFO root:plugin.py:101 Verified: FxAccount(email='pytest-5d2986f7d5@restmail.net', password='HXrSZsXZ') -------------------------------Captured log call-------------------------------- INFO root:xcrun.py:13 Running: xcrun simctl shutdown all INFO root:xcrun.py:13 Running: xcrun simctl erase all INFO root:xcodebuild.py:31 Running: xcodebuild test -scheme Fennec_Enterprise_XCUITests -destination platform=iOS Simulator,name=iPhone 14 -only-testing:XCUITests/IntegrationTests/testFxASyncPageUsingChinaFxA -testPlan SyncIntegrationTestPlan -----------------------------Captured log teardown------------------------------ INFO root:plugin.py:56 Removed: FxAccount(email='pytest-5d2986f7d5@restmail.net', password='HXrSZsXZ') ------------------------------------Firefox------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_disconnect_connect_f0/firefox.log --------------------------------------TPS--------------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_disconnect_connect_f0/tps.log -----------------------------------XCodeBuild----------------------------------- Log: /private/var/folders/9s/00k79sy570v3rt4glx8sm5dh0000gn/T/pytest-of-administrator/pytest-65/test_sync_china_fxa_server0/xcodebuild.log | |||