@@ -119,117 +119,62 @@ public void MsgBoxRspError()
119
119
Assert . Throws < NowProtocolException > ( ( ) => msg . GetResponseOrThrow ( ) ) ;
120
120
}
121
121
122
- /*
123
- let msg = NowSessionMsgBoxRspMsg::new_error(
124
- 0x01234567,
125
- NowStatusError::from(NowStatusErrorKind::Now(NowProtoError::NotImplemented))
126
- .with_message("err")
127
- .unwrap(),
128
- )
129
- .unwrap();
130
-
131
- let decoded = now_msg_roundtrip(
132
- msg,
133
- expect!["[15, 00, 00, 00, 12, 04, 00, 00, 67, 45, 23, 01, 00, 00, 00, 00, 03, 00, 01, 00, 07, 00, 00, 00, 03, 65, 72, 72, 00]"],
134
- );
135
-
136
- let actual = match decoded {
137
- NowMessage::Session(NowSessionMessage::MsgBoxRsp(msg)) => msg,
138
- _ => panic!("Expected NowSessionMsgBoxRspMsg"),
139
- };
140
-
141
- assert_eq!(actual.request_id(), 0x01234567);
142
- assert_eq!(
143
- actual.to_result().unwrap_err(),
144
- NowStatusError::from(NowStatusErrorKind::Now(NowProtoError::NotImplemented))
145
- .with_message("err")
146
- .unwrap()
147
- );
148
-
149
- /*
150
- [TestMethod]
151
- public void MsgLockRoundtrip()
152
- {
153
- var msg = new NowMsgSessionLock();
154
-
155
- var actualEncoded = new byte[(msg as INowSerialize).Size];
156
- {
157
- var cursor = new NowWriteCursor(actualEncoded);
158
- (msg as INowSerialize).Serialize(cursor);
159
- }
160
-
161
- var expectedEncoded = new byte[]
162
- {
163
- 0x00, 0x00, 0x00, 0x00, 0x12, 0x01, 0x00, 0x00,
164
- };
165
-
166
- CollectionAssert.AreEqual(expectedEncoded, actualEncoded);
167
- }
168
-
169
- [TestMethod]
170
- public void MsgLogoff()
171
- {
172
- var msg = new NowMsgSessionLogoff();
173
-
174
- var actualEncoded = new byte[(msg as INowSerialize).Size];
175
- {
176
- var cursor = new NowWriteCursor(actualEncoded);
177
- (msg as INowSerialize).Serialize(cursor);
178
- }
179
-
180
- var expectedEncoded = new byte[]
181
- {
182
- 0x00, 0x00, 0x00, 0x00, 0x12, 0x02, 0x00, 0x00,
183
- };
184
-
185
- CollectionAssert.AreEqual(expectedEncoded, actualEncoded);
186
- }
187
-
188
- [TestMethod]
189
- public void MsgMessageBoxReq()
190
- {
191
- var msg = new NowMsgSessionMessageBoxReq(0x76543210, "hello")
192
- {
193
- WaitForResponse = true,
194
- Style = NowMsgSessionMessageBoxReq.MessageBoxStyle.AbortRetryIgnore,
195
- Title = "world",
196
- Timeout = 3,
197
- };
198
-
199
- var actualEncoded = new byte[(msg as INowSerialize).Size];
200
- {
201
- var cursor = new NowWriteCursor(actualEncoded);
202
- (msg as INowSerialize).Serialize(cursor);
203
- }
204
-
205
- var expectedEncoded = new byte[]
206
- {
207
- 0x1A, 0x00, 0x00, 0x00, 0x12, 0x03, 0x0F, 0x00,
208
- 0x10, 0x32, 0x54, 0x76, 0x02, 0x00, 0x00, 0x00,
209
- 0x03, 0x00, 0x00, 0x00, 0x05, 0x77, 0x6F, 0x72,
210
- 0x6C, 0x64, 0x00, 0x05, 0x68, 0x65, 0x6C, 0x6C,
211
- 0x6F, 0x00,
212
- };
213
-
214
- CollectionAssert.AreEqual(expectedEncoded, actualEncoded);
215
- }
216
-
217
- [TestMethod]
218
- public void MsgMessageBoxRsp()
219
- {
220
- var encoded = new byte[]
221
- {
222
- 0x08, 0x00, 0x00, 0x00, 0x12, 0x04, 0x00, 0x00,
223
- 0x67, 0x45, 0x23, 0x01, 0x04, 0x00, 0x00, 0x00,
224
- };
225
-
226
- var msg = NowMessage
227
- .Read(new NowReadCursor(encoded))
228
- .Deserialize<NowMsgSessionMessageBoxRsp>();
229
-
230
- Assert.AreEqual((uint)0x01234567, msg.RequestId);
231
- Assert.AreEqual(NowMsgSessionMessageBoxRsp.MessageBoxResponse.Retry, msg.Response);
232
- }
233
- */
122
+ [ Fact ]
123
+ public void SetKbdLayoutSpecific ( )
124
+ {
125
+ var msg = NowMsgSessionSetKbdLayout . Specific ( "00000409" ) ;
126
+
127
+ var encoded = new byte [ ]
128
+ {
129
+ 0x0A , 0x00 , 0x00 , 0x00 , 0x12 , 0x05 , 0x00 , 0x00 , 0x08 , 0x30 , 0x30 , 0x30 ,
130
+ 0x30 , 0x30 , 0x34 , 0x30 , 0x39 , 0x00
131
+ } ;
132
+
133
+ var decoded = NowTest . MessageRoundtrip ( msg , encoded ) ;
134
+
135
+ Assert . Equal ( msg . LayoutOption , decoded . LayoutOption ) ;
136
+ Assert . Equal ( msg . Layout , decoded . Layout ) ;
137
+
138
+ Assert . Equal ( NowMsgSessionSetKbdLayout . SetKbdLayoutOption . Specific , msg . LayoutOption ) ;
139
+ Assert . Equal ( "00000409" , msg . Layout ) ;
140
+ }
141
+
142
+ [ Fact ]
143
+ public void SetKbdLayoutNext ( )
144
+ {
145
+ var msg = NowMsgSessionSetKbdLayout . Next ( ) ;
146
+
147
+ var encoded = new byte [ ]
148
+ {
149
+ 0x02 , 0x00 , 0x00 , 0x00 , 0x12 , 0x05 , 0x01 , 0x00 , 0x00 , 0x00
150
+ } ;
151
+
152
+ var decoded = NowTest . MessageRoundtrip ( msg , encoded ) ;
153
+
154
+ Assert . Equal ( msg . LayoutOption , decoded . LayoutOption ) ;
155
+ Assert . Equal ( msg . Layout , decoded . Layout ) ;
156
+
157
+ Assert . Equal ( NowMsgSessionSetKbdLayout . SetKbdLayoutOption . Next , msg . LayoutOption ) ;
158
+ Assert . Null ( msg . Layout ) ;
159
+ }
160
+
161
+ [ Fact ]
162
+ public void SetKbdLayoutPrev ( )
163
+ {
164
+ var msg = NowMsgSessionSetKbdLayout . Prev ( ) ;
165
+
166
+ var encoded = new byte [ ]
167
+ {
168
+ 0x02 , 0x00 , 0x00 , 0x00 , 0x12 , 0x05 , 0x02 , 0x00 , 0x00 , 0x00
169
+ } ;
170
+
171
+ var decoded = NowTest . MessageRoundtrip ( msg , encoded ) ;
172
+
173
+ Assert . Equal ( msg . LayoutOption , decoded . LayoutOption ) ;
174
+ Assert . Equal ( msg . Layout , decoded . Layout ) ;
175
+
176
+ Assert . Equal ( NowMsgSessionSetKbdLayout . SetKbdLayoutOption . Prev , msg . LayoutOption ) ;
177
+ Assert . Null ( msg . Layout ) ;
178
+ }
234
179
}
235
180
}
0 commit comments