-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(database): add initial firebase database (#4)
See this [link](https://github.com/firebase/flutterfire/tree/665fb146dcbfcf1d18e6355cbd137c361524f26c/packages/firebase_database/firebase_database_platform_interface/lib/src/method_channel) for the message channel protocol. Signed-off-by: Daeyeon Jeong <[email protected]> --------- Signed-off-by: Daeyeon Jeong <[email protected]>
- Loading branch information
Showing
47 changed files
with
4,032 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins: | ||
firebase_core: ["tv-7.0"] | ||
firebase_database: [] | ||
firebase_database: ["tv-7.0"] | ||
firebase_storage: [] | ||
cloud_functions: ["tv-7.0"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
BasedOnStyle: Google | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock. | ||
/pubspec.lock | ||
**/doc/api/ | ||
.dart_tool/ | ||
.packages | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 0.1.0 | ||
|
||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
``` | ||
Copyright (c) 2023 Samsung Electronics Co., Ltd. All rights reserved. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
``` | ||
|
||
``` | ||
Copyright 2017 The Chromium Authors. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following disclaimer | ||
in the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of Google Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# firebase_database_tizen | ||
|
||
The [Firebase Database for Flutter](https://pub.dev/packages/firebase_database) implementation for Tizen. | ||
|
||
It offers experimental features for using Firebase on Flutter for Tizen. It works by wrapping cross-compiled libraries that are based on the [Firebase C++ SDK](https://github.com/firebase/firebase-cpp-sdk) for Linux. | ||
|
||
# Usage | ||
|
||
To use this package, you need to include `firebase_database_tizen` as a dependency alongside `firebase_database` in your `pubspec.yaml`. Please note that `firebase_database_tizen` implementation is not officially endorsed for `firebase_database`. | ||
|
||
```yaml | ||
dependencies: | ||
firebase_database: 10.0.9 | ||
firebase_database_tizen: ^0.1.0 | ||
``` | ||
Then you can import `firebase_database` in your Dart code: | ||
|
||
```dart | ||
import 'package:firebase_database/firebase_database.dart'; | ||
``` | ||
|
||
## Required privileges | ||
|
||
To use this plugin in a Tizen application, you may need to declare the following privileges in your `tizen-manifest.xml` file. | ||
|
||
```xml | ||
<privileges> | ||
<privilege>http://tizen.org/privilege/internet</privilege> | ||
</privileges> | ||
``` | ||
|
||
- `http://tizen.org/privilege/internet` allows the application to access the Internet. | ||
|
||
For the details on Tizen privileges, please see [Tizen Docs: API Privileges](https://docs.tizen.org/application/dotnet/get-started/api-privileges). | ||
|
||
|
||
# Limitations | ||
|
||
The following features are currently unavailable as they're not supported by the version of Firebase C++ SDK for Linux that this plugin is currently based on. | ||
|
||
- Using Firebase Local Emulator Suite. | ||
- Using `FirebaseDatabase#setPersistenceCacheSizeBytes()` for the on-disk data. | ||
- Using `Query#startAfter()` or `Query#endBefore()` method to add a cursor to a query. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include: ../../analysis_options.yaml | ||
|
||
linter: | ||
rules: | ||
public_member_api_docs: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# VS Code related | ||
.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
/pubspec.lock | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Example | ||
|
||
A test app for firebase_database_tizen plugin (e2e). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright 2021 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# in the LICENSE file. | ||
|
||
include: ../../../analysis_options.yaml | ||
linter: | ||
rules: | ||
avoid_print: false | ||
depend_on_referenced_packages: false | ||
library_private_types_in_public_api: false |
154 changes: 154 additions & 0 deletions
154
packages/firebase_database/example/integration_test/firebase_database/data_snapshot_e2e.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// Copyright 2022, the Chromium project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'package:firebase_database/firebase_database.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void setupDataSnapshotTests() { | ||
group('DataSnapshot', () { | ||
late DatabaseReference ref; | ||
|
||
setUp(() async { | ||
ref = FirebaseDatabase.instance.ref('tests'); | ||
|
||
// Wipe the database before each test | ||
await ref.remove(); | ||
}); | ||
|
||
test('it returns the correct key', () async { | ||
final s = await ref.get(); | ||
expect(s.key, 'tests'); | ||
}); | ||
|
||
test('it returns a string value', () async { | ||
await ref.set('foo'); | ||
final s = await ref.get(); | ||
expect(s.value, 'foo'); | ||
}); | ||
|
||
test('it returns a number value', () async { | ||
await ref.set(123); | ||
final s = await ref.get(); | ||
expect(s.value, 123); | ||
}); | ||
|
||
test('it returns a bool value', () async { | ||
await ref.set(false); | ||
final s = await ref.get(); | ||
expect(s.value, false); | ||
}); | ||
|
||
test('it returns a null value', () async { | ||
await ref.set(null); | ||
final s = await ref.get(); | ||
expect(s.value, isNull); | ||
}); | ||
|
||
test('it returns a List value', () async { | ||
final data = [ | ||
'a', | ||
2, | ||
true, | ||
['foo'], | ||
{ | ||
0: 'hello', | ||
1: 'foo', | ||
} | ||
]; | ||
await ref.set(data); | ||
final s = await ref.get(); | ||
expect( | ||
s.value, | ||
equals([ | ||
'a', | ||
2, | ||
true, | ||
['foo'], | ||
['hello', 'foo'] | ||
]), | ||
); | ||
}); | ||
|
||
test('it returns a Map value', () async { | ||
final data = {'foo': 'bar'}; | ||
await ref.set(data); | ||
final s = await ref.get(); | ||
expect(s.value, equals(data)); | ||
}); | ||
|
||
test('non-string Map keys are converted to strings', () async { | ||
final data = {1: 'foo', 2: 'bar', 'foo': 'bar'}; | ||
await ref.set(data); | ||
final s = await ref.get(); | ||
expect(s.value, equals({'1': 'foo', '2': 'bar', 'foo': 'bar'})); | ||
}); | ||
|
||
test('setWithPriority returns the correct priority', () async { | ||
await ref.setWithPriority('foo', 1); | ||
final s = await ref.get(); | ||
expect(s.priority, 1); | ||
}); | ||
|
||
test('setPriority returns the correct priority', () async { | ||
await ref.set('foo'); | ||
await ref.setPriority(2); | ||
final s = await ref.get(); | ||
expect(s.priority, 2); | ||
}); | ||
|
||
test('exists returns true', () async { | ||
await ref.set('foo'); | ||
final s = await ref.get(); | ||
expect(s.exists, isTrue); | ||
}); | ||
|
||
test('exists returns false', () async { | ||
final s = await ref.get(); | ||
expect(s.exists, isFalse); | ||
}); | ||
|
||
test('hasChild returns false', () async { | ||
final s = await ref.get(); | ||
expect(s.hasChild('bar'), isFalse); | ||
}); | ||
|
||
test('hasChild returns true', () async { | ||
await ref.set({ | ||
'foo': {'bar': 'baz'} | ||
}); | ||
final s = await ref.get(); | ||
expect(s.hasChild('bar'), isFalse); | ||
}); | ||
|
||
test('child returns the correct snapshot for lists', () async { | ||
await ref.set([0, 1]); | ||
final s = await ref.get(); | ||
expect(s.child('1'), isA<DataSnapshot>()); | ||
expect(s.child('1').value, 1); | ||
}); | ||
|
||
test('child returns the correct snapshot', () async { | ||
await ref.set({ | ||
'foo': {'bar': 'baz'} | ||
}); | ||
final s = await ref.get(); | ||
expect(s.child('foo/bar'), isA<DataSnapshot>()); | ||
expect(s.child('foo/bar').value, 'baz'); | ||
}); | ||
|
||
test('children returns the children in order', () async { | ||
await ref.set({ | ||
'a': 3, | ||
'b': 2, | ||
'c': 1, | ||
}); | ||
final s = await ref.orderByValue().get(); | ||
|
||
List<DataSnapshot> children = s.children.toList(); | ||
expect(children[0].value, 1); | ||
expect(children[1].value, 2); | ||
expect(children[2].value, 3); | ||
}); | ||
}); | ||
} |
Oops, something went wrong.