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

Test delays with “Timed out waiting for the exit barrier block” #752

Closed
jaanus opened this issue Jul 30, 2023 · 2 comments
Closed

Test delays with “Timed out waiting for the exit barrier block” #752

jaanus opened this issue Jul 30, 2023 · 2 comments

Comments

@jaanus
Copy link

jaanus commented Jul 30, 2023

Describe the bug

Running snapshot tests with existing screenshots results in test delays and “Timed out waiting for the exit barrier block” messages on console.

To Reproduce

Have this test class.

import SwiftUI
import SnapshotTesting
import XCTest

final class SettingsViewTests: XCTestCase {  
  func test_simple_view() {
    let sut = Text("Hello settings")
      .frame(width: 100, height: 100)
    SnapshotTesting.assertSnapshot(matching: sut, as: .image)
  }
}

When it is run without a snapshot being present, it quickly and correctly records the snapshot and reports a failure.

Test Suite 'Selected tests' started at 2023-07-30 14:35:52.852
Test Suite 'SettingsTests.xctest' started at 2023-07-30 14:35:52.853
Test Suite 'SettingsViewTests' started at 2023-07-30 14:35:52.853
Test Case '-[SettingsTests.SettingsViewTests test_simple_view]' started.
/Users/jaanus/Developer/Tact/Tact/Library/Targets/Settings/Tests/SettingsViewTests.swift:30: error: -[SettingsTests.SettingsViewTests test_simple_view] : failed - No reference was found on disk. Automatically recorded snapshot: …

open "/Users/jaanus/Developer/Tact/Tact/Library/Targets/Settings/Tests/__Snapshots__/SettingsViewTests/test_simple_view.1.png"

Re-run "test_simple_view" to test against the newly-recorded snapshot.
Test Case '-[SettingsTests.SettingsViewTests test_simple_view]' failed (0.069 seconds).
Test Suite 'SettingsViewTests' failed at 2023-07-30 14:35:52.922.
	 Executed 1 test, with 1 failure (0 unexpected) in 0.069 (0.069) seconds
Test Suite 'SettingsTests.xctest' failed at 2023-07-30 14:35:52.922.
	 Executed 1 test, with 1 failure (0 unexpected) in 0.069 (0.070) seconds
Test Suite 'Selected tests' failed at 2023-07-30 14:35:52.923.
	 Executed 1 test, with 1 failure (0 unexpected) in 0.069 (0.071) seconds
Program ended with exit code: 1

When the snapshot is present, the test works correctly (passes or fails as expected). However, the process has several seconds of delay in the end.

Test Suite 'Selected tests' started at 2023-07-30 14:36:29.432
Test Suite 'SettingsTests.xctest' started at 2023-07-30 14:36:29.432
Test Suite 'SettingsViewTests' started at 2023-07-30 14:36:29.432
Test Case '-[SettingsTests.SettingsViewTests test_simple_view]' started.
Test Case '-[SettingsTests.SettingsViewTests test_simple_view]' passed (0.071 seconds).
Test Suite 'SettingsViewTests' passed at 2023-07-30 14:36:29.503.
	 Executed 1 test, with 0 failures (0 unexpected) in 0.071 (0.071) seconds
Test Suite 'SettingsTests.xctest' passed at 2023-07-30 14:36:29.504.
	 Executed 1 test, with 0 failures (0 unexpected) in 0.071 (0.072) seconds
Test Suite 'Selected tests' passed at 2023-07-30 14:36:29.504.
	 Executed 1 test, with 0 failures (0 unexpected) in 0.071 (0.072) seconds
2023-07-30 14:36:32.011572+0300 xctest[18827:731647] [client] Timed out waiting for the exit barrier block. activeSendTransactions=0
Program ended with exit code: 0

Expected behavior

When snapshots are present, the test should complete without any delay.

Environment

  • swift-snapshot-testing version 1.11.1
  • Xcode Version 14.3.1 (14E300c)
  • Swift 5.8.1
  • OS: macOS Ventura 13.5 (22G74)
  • iOS Simulator: iPhone 14 Pro, iOS 16.4
@tinder-cfuller
Copy link

I just created a new project without this library as a dependency and experienced the same issue. So this would indicate that it is not an issue of swift-snapshot-testing and could therefore be an Apple issue. Please test a project without swift-snapshot-testing and report back whether you experience the same thing. Thank you.

@jaanus
Copy link
Author

jaanus commented Nov 25, 2023

This is an obsolete bug and I have not seen it lately, so, closing.

The slowness I observed was actually this: #664

@jaanus jaanus closed this as not planned Won't fix, can't repro, duplicate, stale Nov 25, 2023
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

No branches or pull requests

2 participants