Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Equality on MockDocumentReference #49

Closed
suztomo opened this issue Mar 27, 2020 · 0 comments · Fixed by #64
Closed

Add Equality on MockDocumentReference #49

suztomo opened this issue Mar 27, 2020 · 0 comments · Fixed by #64

Comments

@suztomo
Copy link
Collaborator

suztomo commented Mar 27, 2020

    test('FieldValue.arrayUnion() adds unique items', () async {
      final firestore = MockFirestoreInstance();
      // Empty document before updateData
      await firestore.collection('messages').document(uid).setData({
        'reference array': [
          firestore.collection('messages').document('document1')
        ]
      });

      await firestore.collection('messages').document(uid).updateData({
        'reference array': FieldValue.arrayUnion(
            [firestore.collection('messages').document('document1')]),
      });

      final users = await firestore.collection('messages').getDocuments();
      final snapshot = users.documents.first;

      expect(snapshot['reference array'], [
        firestore.collection('messages').document('document1')
      ]);
    });

This failed:

Expected: [MockDocumentReference:MockDocumentReference]
  Actual: [MockDocumentReference:MockDocumentReference, null]
   Which: was MockDocumentReference:<MockDocumentReference> instead of MockDocumentReference:<MockDocumentReference> at location [0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant