-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathStatementTests.java
More file actions
581 lines (349 loc) · 17.3 KB
/
StatementTests.java
File metadata and controls
581 lines (349 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
/*
* Copyright 2016-2023 Berry Cloud Ltd. All rights reserved.
*/
package dev.learning.xapi.model;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.instanceOf;
import static org.hamcrest.Matchers.is;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import jakarta.validation.ConstraintViolation;
import jakarta.validation.Validation;
import jakarta.validation.Validator;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.time.Instant;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Locale;
import java.util.Set;
import java.util.UUID;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.util.ResourceUtils;
/**
* Statement Tests.
*
* @author Lukáš Sahula
* @author Martin Myslik
* @author Thomas Turrell-Croft
*/
@DisplayName("Statement tests")
class StatementTests {
private final ObjectMapper objectMapper = new ObjectMapper().findAndRegisterModules();
private final Validator validator = Validation.buildDefaultValidatorFactory().getValidator();
/*
* Deserialization tests.
*/
@Test
void whenDeserializingStatementThenResultIsInstanceOfStatement() throws IOException {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Result Is Instance Of Statement
assertThat(result, instanceOf(Statement.class));
}
@Test
void whenDeserializingStatementWithIdThenIdIsExpected() throws IOException {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Id
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Id Is Expected
assertThat(result.getId(), is(UUID.fromString("4b9175ba-367d-4b93-990b-34d4180039f1")));
}
@Test
void whenDeserializingStatementWithActorThenActorIsInstanceOfActor() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Actor
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Actor Is Instance Of Actor
assertThat(result.getActor(), instanceOf(Actor.class));
}
@Test
void whenDeserializingStatementWithVerbThenVerbIsInstanceOfVerb() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Verb
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Verb Is Instance Of Verb
assertThat(result.getVerb(), instanceOf(Verb.class));
}
@Test
void whenDeserializingStatementWithObjectThenObjectIsInstanceOfStatementObject()
throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Object
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Object Is Instance Of StatementObject
assertThat(result.getObject(), instanceOf(StatementObject.class));
}
@Test
void whenDeserializingStatementWithResultThenResultIsInstanceOfResult() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Result
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Result Is Instance Of Result
assertThat(result.getResult(), instanceOf(Result.class));
}
@Test
void whenDeserializingStatementWithContextThenContextIsInstanceOfContext() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Context
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Context Is Instance Of Context
assertThat(result.getContext(), instanceOf(Context.class));
}
@Test
void whenDeserializingStatementWithTimestampThenTimestampIsExpected() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Timestamp
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Timestamp Is Expected
assertThat(result.getTimestamp().toString(), is("2013-05-18T05:32:34.804Z"));
}
@Test
void whenDeserializingStatementWithStoredThenStoredIsExpected() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Stored
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Stored Is Expected
assertThat(result.getStored().toString(), is("2013-05-18T05:32:34.804Z"));
}
@Test
void whenDeserializedStatementWithAuthorityThenAuthorityIsInstanceOfActor() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserialized Statement With Authority
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Authority Is Instance Of Actor
assertThat(result.getAuthority(), instanceOf(Actor.class));
}
@Test
void whenDeserializingStatementWithVersionThenVersionIsExpected() throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Version
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Version Is Expected
assertThat(result.getVersion(), is("1.0.0"));
}
@Test
void whenDeserializingStatementWithAttachmentsThenAttachmentsIsInstanceOfAttachment()
throws Exception {
final File file = ResourceUtils.getFile("classpath:statement/statement.json");
// When Deserializing Statement With Attachments
final Statement result = objectMapper.readValue(file, Statement.class);
// Then Attachments Is Instance Of Attachment
assertThat(result.getAttachments().get(0), instanceOf(Attachment.class));
}
@Test
void whenSerializingStatementWithAgentWithAccountThenResultIsEqualToExpectedJson()
throws IOException {
final Statement statement = Statement.builder()
.actor(a -> a.account(
acc -> acc.name("A N Other").homePage(URI.create("https://example.com/account/1234"))))
.verb(Verb.EXPERIENCED)
.activityObject(o -> o.id("https://example.com/xapi/activity/simplestatement"))
.build();
// when Serializing Statement With Agent With Account
final JsonNode result = objectMapper.readTree(objectMapper.writeValueAsString(statement));
// Then Result Is Equal To Expected Json
assertThat(result,
is(objectMapper.readTree(objectMapper.writeValueAsString(objectMapper.readValue(
ResourceUtils.getFile("classpath:statement/statement_with_agent_with_account.json"),
Statement.class)))));
}
@Test
void whenSerializingStatementThenResultIsEqualToExpectedJson() throws IOException {
final LinkedHashMap<URI, Object> extensions = new LinkedHashMap<>();
extensions.put(URI.create("http://name"), "Kilby");
final Attachment attachment = Attachment.builder().usageType(URI.create("http://example.com"))
.fileUrl(URI.create("http://example.com"))
.addDisplay(Locale.US, "value")
.addDescription(Locale.US, "value")
.length(123)
.sha2("123")
.contentType("file")
.build();
final Account account = Account.builder()
.homePage(URI.create("https://example.com"))
.name("13936749")
.build();
final Statement statement = Statement.builder()
.id(UUID.fromString("4b9175ba-367d-4b93-990b-34d4180039f1"))
.actor(a -> a.name("A N Other"))
.verb(v -> v.id(URI.create("http://example.com/xapi/verbs#sent-a-statement"))
.addDisplay(Locale.US, "attended"))
.result(r -> r.success(true).completion(true).response("Response").duration("P1D"))
.context(c -> c
.registration(UUID.fromString("ec531277-b57b-4c15-8d91-d292c5b2b8f7"))
.agentInstructor(a -> a.name("A N Other").account(account))
.team(t -> t.name("Team").mbox("mailto:team@example.com"))
.platform("Example virtual meeting software")
.language(Locale.US)
.statementReference(s -> s.id(UUID.fromString("6690e6c9-3ef0-4ed3-8b37-7f3964730bee")))
)
.timestamp(Instant.parse("2013-05-18T05:32:34.804+00:00"))
.stored(Instant.parse("2013-05-18T05:32:34.804+00:00"))
.agentAuthority(a -> a.account(account))
.activityObject(a -> a.id("http://www.example.com/meetings/occurances/34534")
.definition(d -> d.addName(Locale.US,
"A simple Experience API statement. Note that the LRS does not need to have any prior information about the Actor (learner), the verb, or the Activity/object.")
.addDescription(Locale.US,
"A simple Experience API statement. Note that the LRS does not need to have any prior information about the Actor (learner), the verb, or the Activity/object.")
.type(URI.create("http://adlnet.gov/expapi/activities/meeting"))
.moreInfo(URI.create("http://virtualmeeting.example.com/345256"))
.extensions(extensions)))
.attachments(Collections.singletonList(attachment))
.version("1.0.0")
.build();
// When Serializing Statement
final JsonNode result = objectMapper.readTree(objectMapper.writeValueAsString(statement));
// Then Result Is Equal To Expected Json
assertThat(result,
is(objectMapper.readTree(objectMapper.writeValueAsString(objectMapper.readValue(
ResourceUtils.getFile("classpath:statement/statement.json"), Statement.class)))));
}
@Test
void whenSerializingStatementWithEnLocaleThenResultIsEqualToExpectedJson() throws IOException {
final LinkedHashMap<URI, Object> extensions = new LinkedHashMap<>();
extensions.put(URI.create("http://name"), "Kilby");
final Attachment attachment = Attachment.builder().usageType(URI.create("http://example.com"))
.fileUrl(URI.create("http://example.com"))
.addDisplay(Locale.ENGLISH, "value")
.addDescription(Locale.ENGLISH, "value")
.length(123)
.sha2("123")
.contentType("file")
.build();
final Account account = Account.builder()
.homePage(URI.create("https://example.com"))
.name("13936749")
.build();
final Statement statement = Statement.builder()
.id(UUID.fromString("4b9175ba-367d-4b93-990b-34d4180039f1"))
.actor(a -> a.name("A N Other"))
.verb(v -> v.id(URI.create("http://example.com/xapi/verbs#sent-a-statement"))
.addDisplay(Locale.ENGLISH, "attended"))
.result(r -> r.success(true).completion(true).response("Response").duration("P1D"))
.context(c -> c
.registration(UUID.fromString("ec531277-b57b-4c15-8d91-d292c5b2b8f7"))
.agentInstructor(a -> a.name("A N Other").account(account))
.team(t -> t.name("Team").mbox("mailto:team@example.com"))
.platform("Example virtual meeting software")
.language(Locale.ENGLISH)
.statementReference(s -> s.id(UUID.fromString("6690e6c9-3ef0-4ed3-8b37-7f3964730bee")))
)
.timestamp(Instant.parse("2013-05-18T05:32:34.804+00:00"))
.stored(Instant.parse("2013-05-18T05:32:34.804+00:00"))
.agentAuthority(a -> a.account(account))
.activityObject(a -> a.id("http://www.example.com/meetings/occurances/34534")
.definition(d -> d.addName(Locale.ENGLISH,
"A simple Experience API statement. Note that the LRS does not need to have any prior information about the Actor (learner), the verb, or the Activity/object.")
.addDescription(Locale.ENGLISH,
"A simple Experience API statement. Note that the LRS does not need to have any prior information about the Actor (learner), the verb, or the Activity/object.")
.type(URI.create("http://adlnet.gov/expapi/activities/meeting"))
.moreInfo(URI.create("http://virtualmeeting.example.com/345256"))
.extensions(extensions)))
.attachments(Collections.singletonList(attachment))
.version("1.0.0")
.build();
// When Serializing Statement With En Locale
final JsonNode result = objectMapper.readTree(objectMapper.writeValueAsString(statement));
// Then Result Is Equal To Expected Json
assertThat(result,
is(objectMapper.readTree(objectMapper.writeValueAsString(objectMapper.readValue(
ResourceUtils.getFile("classpath:statement/statement_with_en_locale.json"),
Statement.class)))));
}
@Test
void givenStatementWithPassedVerbWhenCallingToBuilderAndSettingVerbToCompletedThenResultVerbIsCompleted() {
// Given Statement With Passed Verb
final Statement passed = Statement.builder()
.actor(a -> a.name("A N Other"))
.verb(Verb.PASSED)
.activityObject(a -> a.id("https://example.com/activity/simplestatement"))
.build();
// When Calling ToBuilder And Setting Verb To Completed
Statement result = passed.toBuilder()
.verb(Verb.COMPLETED)
.build();
// Then Result Verb Is Completed
assertThat(result.getVerb(), is(Verb.COMPLETED));
}
@Test
void WhenCallingToBuilderAndSettingVerbToCompletedThenResultVerbIsCompleted() {
// When Building Statement With Statement Reference Object
final Statement statement = Statement.builder()
.actor(a -> a.name("A N Other"))
.verb(Verb.VOIDED)
.statementReferenceObject(
sr -> sr.id(UUID.fromString("c972020f-0718-4033-95d0-4b502a115aa9")))
.build();
// Then Statement Object Is Instances Of StatementReference
assertThat(statement.getObject(), instanceOf(StatementReference.class));
}
@Test
void whenValidatingStatementWithAllRequiredPropertiesThenConstraintViolationsSizeIsZero() {
final Statement statement = Statement.builder()
.actor(a -> a.name("A N Other").mbox("mailto:another@example.com"))
.verb(Verb.EXPERIENCED)
.activityObject(o -> o.id("https://example.com/xapi/activity/simplestatement"))
.build();
// When Validating Statement With All Required Properties
final Set<ConstraintViolation<Statement>> constraintViolations = validator.validate(statement);
// Then ConstraintViolations Size Is Zero
assertThat(constraintViolations, hasSize(0));
}
@Test
void whenValidatingStatementWithoutActorThenConstraintViolationsSizeIsOne() {
final Statement statement = Statement.builder()
.verb(Verb.EXPERIENCED)
.activityObject(o -> o.id("https://example.com/xapi/activity/simplestatement"))
.build();
// When Validating Statement Without Actor
final Set<ConstraintViolation<Statement>> constraintViolations = validator.validate(statement);
// Then ConstraintViolations Size Is One
assertThat(constraintViolations, hasSize(1));
}
@Test
void whenValidatingStatementWithoutAVerbThenConstraintViolationsSizeIsOne() {
final Statement statement = Statement.builder()
.actor(a -> a.name("A N Other").mbox("mailto:another@example.com"))
.activityObject(o -> o.id("https://example.com/xapi/activity/simplestatement"))
.build();
// When Validating Statement Without A Verb
final Set<ConstraintViolation<Statement>> constraintViolations = validator.validate(statement);
// Then ConstraintViolations Size Is One
assertThat(constraintViolations, hasSize(1));
}
@Test
void whenValidatingStatementWithoutAnActivityThenConstraintViolationsSizeIsOne() {
final Statement statement = Statement.builder()
.actor(a -> a.name("A N Other").mbox("mailto:another@example.com"))
.verb(Verb.EXPERIENCED)
.build();
// When Validating Statement Without An Activity
final Set<ConstraintViolation<Statement>> constraintViolations = validator.validate(statement);
// Then ConstraintViolations Size Is One
assertThat(constraintViolations, hasSize(1));
}
@Test
void whenValidatingStatementWithSubStatementWithStatementReferenceThenConstraintViolationsSizeIsZero() {
StatementReference statementRef = StatementReference.builder()
.id(UUID.fromString("9e13cefd-53d3-4eac-b5ed-2cf6693903bb")).build();
SubStatement subStatement = SubStatement.builder()
.actor(a -> a.name("A N Other").mbox("mailto:another@example.com"))
.verb(Verb.EXPERIENCED)
.object(statementRef)
.build();
final Statement statement = Statement.builder()
.actor(a -> a.name("A N Other").mbox("mailto:another@example.com"))
.verb(Verb.EXPERIENCED)
.object(subStatement)
.build();
// When Validating Statement With SubStatement With StatementReference
final Set<ConstraintViolation<Statement>> constraintViolations = validator.validate(statement);
// Then ConstraintViolations Size Is Zero
assertThat(constraintViolations, hasSize(0));
}
}