Skip to content

atn832/firebase_storage_mocks

Repository files navigation

Firebase Storage Mocks

Mocks for Firebase Storage. Use this package to write unit tests involving Firebase Storage.

pub package

Usage

A simple usage example: (assumes assets/someimage.png exists in project and is included in assets section of pubspec.yaml)

import 'package:firebase_storage_mocks/firebase_storage_mocks.dart';
import 'package:flutter/services.dart' show rootBundle;

main() async {
  final storage = MockFirebaseStorage();
  const filename = 'someimage.png';
  final storageRef = storage.ref().child(filename);
  final localImage = await rootBundle.load("assets/$filename");
  final task = await storageRef.putData(localImage.buffer.asUint8List());
  // Prints 'gs://some-bucket//someimage.png'.
  print(task.ref.fullPath);
}

Compatibility table

firebase_storage firebase_storage_mocks
12.0.0 0.7.0
11.0.0 0.6.0
10.0.0 0.5.1

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages