@@ -9,6 +9,7 @@ struct SettingsScreenTests {
9
9
class FakeScreen : FakeScreenBase , SettingsScreenProtocol {
10
10
var token = " "
11
11
var currentUser : Components . Schemas . User ?
12
+ var bio = " "
12
13
var isLoadingAvatar = false
13
14
}
14
15
@@ -25,7 +26,8 @@ struct SettingsScreenTests {
25
26
let screen = FakeScreen ( eventBus: eventBus, api: . fake( ) )
26
27
await screen. getCurrentUser ( )
27
28
await screen. updateAvatar (
28
- with: try await . init( collecting: FakeClient . largeImageBody, upTo: 64 ) )
29
+ with: try await . init( collecting: FakeClient . largeImageBody, upTo: 64 )
30
+ )
29
31
#expect( eventBus. storedEvents. count == 1 )
30
32
#expect( screen. currentUser? . avatar == " " )
31
33
}
@@ -36,7 +38,8 @@ struct SettingsScreenTests {
36
38
let screen = FakeScreen ( eventBus: eventBus, api: . fake( ) )
37
39
await screen. getCurrentUser ( )
38
40
await screen. updateAvatar (
39
- with: try await . init( collecting: FakeClient . notImageBody, upTo: 64 ) )
41
+ with: try await . init( collecting: FakeClient . notImageBody, upTo: 64 )
42
+ )
40
43
#expect( eventBus. storedEvents. count == 1 )
41
44
#expect( screen. currentUser? . avatar == " " )
42
45
}
@@ -47,7 +50,8 @@ struct SettingsScreenTests {
47
50
let screen = FakeScreen ( eventBus: eventBus, api: . fake( ) )
48
51
await screen. getCurrentUser ( )
49
52
await screen. updateAvatar (
50
- with: try await . init( collecting: FakeClient . normalImageBody, upTo: 64 ) )
53
+ with: try await . init( collecting: FakeClient . normalImageBody, upTo: 64 )
54
+ )
51
55
#expect( eventBus. storedEvents. isEmpty)
52
56
#expect( screen. currentUser? . avatar == FakeClient . avatar)
53
57
}
@@ -58,9 +62,43 @@ struct SettingsScreenTests {
58
62
let screen = FakeScreen ( eventBus: eventBus, api: . fake( ) )
59
63
await screen. getCurrentUser ( )
60
64
await screen. updateAvatar (
61
- with: try await . init( collecting: FakeClient . normalImageBody, upTo: 64 ) )
65
+ with: try await . init( collecting: FakeClient . normalImageBody, upTo: 64 )
66
+ )
62
67
await screen. removeAvatar ( )
63
68
#expect( eventBus. storedEvents. isEmpty)
64
69
#expect( screen. currentUser? . avatar == " " )
65
70
}
71
+
72
+ @Test ( " Bio must have correct length " )
73
+ func bioMustHaveCorrectLength( ) async throws {
74
+ let screen = FakeScreen ( eventBus: . init( ) , api: . fake( ) )
75
+ await screen. getCurrentUser ( )
76
+ screen. bio = " Hello "
77
+ #expect( screen. canUpdateBio)
78
+ screen. bio = . init( repeating: " a " , count: Components . Schemas. User. maxBioSize)
79
+ #expect( screen. canUpdateBio)
80
+ screen. bio += " a "
81
+ #expect( !screen. canUpdateBio)
82
+ }
83
+
84
+ @Test ( " Bio must be different " )
85
+ func bioMustHaveBeDifferent( ) async throws {
86
+ let screen = FakeScreen ( eventBus: . init( ) , api: . fake( ) )
87
+ await screen. getCurrentUser ( )
88
+ screen. bio = " Hello "
89
+ #expect( screen. canUpdateBio)
90
+ await screen. updateBio ( )
91
+ #expect( !screen. canUpdateBio)
92
+ }
93
+
94
+ @Test ( " Updating bio produces no failures " )
95
+ func updateBioProducesNoFailures( ) async throws {
96
+ let eventBus = StoringEventBus ( )
97
+ let screen = FakeScreen ( eventBus: eventBus, api: . fake( ) )
98
+ await screen. getCurrentUser ( )
99
+ screen. bio = " Hello "
100
+ await screen. updateBio ( )
101
+ #expect( eventBus. storedEvents. isEmpty)
102
+ #expect( screen. currentUser? . bio == screen. bio)
103
+ }
66
104
}
0 commit comments