fixed test times

This commit is contained in:
Deven Joshi
2021-11-24 13:48:24 +05:30
parent a0fac0b17b
commit df3d6fc20a
@@ -70,13 +70,18 @@ void main() {
expect( expect(
newReaction.extraData, {'updated_at': '2020-01-28T22:17:31.108742Z'}); newReaction.extraData, {'updated_at': '2020-01-28T22:17:31.108742Z'});
final newUserCreateTime = DateTime.now();
newReaction = reaction.copyWith( newReaction = reaction.copyWith(
type: 'lol', type: 'lol',
createdAt: DateTime.parse('2021-01-28T22:17:31.108742Z'), createdAt: DateTime.parse('2021-01-28T22:17:31.108742Z'),
extraData: {}, extraData: {},
messageId: 'test', messageId: 'test',
score: 2, score: 2,
user: User(id: 'test'), user: User(
id: 'test',
createdAt: newUserCreateTime,
updatedAt: newUserCreateTime),
userId: 'test', userId: 'test',
); );
@@ -88,12 +93,19 @@ void main() {
expect(newReaction.extraData, {}); expect(newReaction.extraData, {});
expect(newReaction.messageId, 'test'); expect(newReaction.messageId, 'test');
expect(newReaction.score, 2); expect(newReaction.score, 2);
expect(newReaction.user, User(id: 'test')); expect(
newReaction.user,
User(
id: 'test',
createdAt: newUserCreateTime,
updatedAt: newUserCreateTime));
expect(newReaction.userId, 'test'); expect(newReaction.userId, 'test');
}); });
test('merge', () { test('merge', () {
final reaction = Reaction.fromJson(jsonFixture('reaction.json')); final reaction = Reaction.fromJson(jsonFixture('reaction.json'));
final newUserCreateTime = DateTime.now();
final newReaction = reaction.merge( final newReaction = reaction.merge(
Reaction( Reaction(
type: 'lol', type: 'lol',
@@ -101,7 +113,11 @@ void main() {
extraData: {}, extraData: {},
messageId: 'test', messageId: 'test',
score: 2, score: 2,
user: User(id: 'test'), user: User(
id: 'test',
createdAt: newUserCreateTime,
updatedAt: newUserCreateTime,
),
userId: 'test', userId: 'test',
), ),
); );
@@ -114,7 +130,14 @@ void main() {
expect(newReaction.extraData, {}); expect(newReaction.extraData, {});
expect(newReaction.messageId, 'test'); expect(newReaction.messageId, 'test');
expect(newReaction.score, 2); expect(newReaction.score, 2);
expect(newReaction.user, User(id: 'test')); expect(
newReaction.user,
User(
id: 'test',
createdAt: newUserCreateTime,
updatedAt: newUserCreateTime,
),
);
expect(newReaction.userId, 'test'); expect(newReaction.userId, 'test');
}); });
}); });