การทดสอบโค้ดแบบอะซิงโครนัส
ตรวจสอบลำดับการทำงานของ async/await อย่างน่าเชื่อถือ
การทดสอบโค้ดแบบอะซิงโครนัส เป็นบทเรียน SwiftUI Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน SwiftUI Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส SwiftUI Academy มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Async Needs Special Care
Network calls and tasks finish later, not instantly. Your tests must wait for the result before asserting, or they check too early. ⏳
Mark the Test async
The simplest fix is an async test method. Swift lets you await directly, and the runner pauses until the work completes.
func testLoad() async {
}Await Your Method
Inside an async test you can use await just like real code. The line pauses until your ViewModel finishes loading.
await vm.load()Assert After Awaiting
Once the await returns, the data is ready. Now your assertion checks the final state, not an empty one. ✅
XCTAssertEqual(vm.items.count, 3)Throwing Async Tests
If the code can throw, mark the test throws too. Then try await lets errors bubble up and fail the test cleanly.
func testFetch() async throws {
try await vm.fetch()
}Avoid Real Networks
Hitting a live server makes tests slow and flaky. Inject a mock service that returns fixed data instead.
A Mock Service
A mock conforms to the same protocol but returns canned values. Your ViewModel cannot tell the difference, so the logic is tested honestly.
struct MockAPI: API {
func load() async -> [Item] { sample }
}Testing the Error Path
Make your mock throw on demand. Then you can verify the ViewModel sets an error state instead of crashing.
Expectations for Callbacks
For older callback APIs, use an XCTestExpectation. Fulfill it inside the callback, then wait so the test does not end early.
let exp = expectation(description: "done")Wait With a Timeout
Pair every expectation with a timeout. If the callback never fires, the test fails fast instead of hanging forever.
await fulfillment(of: [exp], timeout: 2)Prefer async Over Callbacks
When you can, write code with async/await. Tests stay short, linear, and far easier to read than nested callbacks.
Quick Check
How should you wait for async work in a modern XCTest?
Recap
You can now test async code: mark tests async, await results, mock the network, and use expectations for callbacks. Reliable every run. 🎉
คำถามที่พบบ่อย
บทเรียน “การทดสอบโค้ดแบบอะซิงโครนัส” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การทดสอบโค้ดแบบอะซิงโครนัส” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส SwiftUI Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส SwiftUI Academy มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การทดสอบโค้ดแบบอะซิงโครนัส”
ตรวจสอบลำดับการทำงานของ async/await อย่างน่าเชื่อถือ คุณปฏิบัติ SwiftUI Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน SwiftUI Academy หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน SwiftUI Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “การทดสอบโค้ดแบบอะซิงโครนัส” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน SwiftUI Academy นี้ได้ไหม
ได้ บทเรียน SwiftUI Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- การทดสอบหน่วยของ ViewModels
- การทดสอบโค้ดแบบอะซิงโครนัส
- การทดสอบส่วนติดต่อผู้ใช้ด้วย XCUITest
- การทดสอบด้วยภาพบันทึกและพรีวิว