-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into theme-refactor
- Loading branch information
Showing
15 changed files
with
685 additions
and
47 deletions.
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
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
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
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
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
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
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,164 @@ | ||
import 'dart:convert'; | ||
|
||
import 'package:flutter/services.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
import 'package:mockito/annotations.dart'; | ||
import 'package:mockito/mockito.dart'; | ||
import 'package:http/http.dart' as http; | ||
import 'package:sqflite_common_ffi/sqflite_ffi.dart'; | ||
import 'package:taskwarrior/api_service.dart'; | ||
import 'package:taskwarrior/app/utils/taskchampion/credentials_storage.dart'; | ||
|
||
import 'api_service_test.mocks.dart'; | ||
|
||
class MockCredentialsStorage extends Mock implements CredentialsStorage {} | ||
|
||
class MockMethodChannel extends Mock implements MethodChannel {} | ||
|
||
@GenerateMocks([MockMethodChannel, http.Client]) | ||
void main() { | ||
TestWidgetsFlutterBinding.ensureInitialized(); | ||
|
||
databaseFactory = databaseFactoryFfi; | ||
MockClient mockClient = MockClient(); | ||
|
||
setUpAll(() { | ||
sqfliteFfiInit(); | ||
}); | ||
|
||
group('Tasks model', () { | ||
test('fromJson creates Tasks object', () { | ||
final json = { | ||
'id': 1, | ||
'description': 'Task 1', | ||
'project': 'Project 1', | ||
'status': 'pending', | ||
'uuid': '123', | ||
'urgency': 5.0, | ||
'priority': 'H', | ||
'due': '2024-12-31', | ||
'end': null, | ||
'entry': '2024-01-01', | ||
'modified': '2024-11-01', | ||
}; | ||
|
||
final task = Tasks.fromJson(json); | ||
|
||
expect(task.id, 1); | ||
expect(task.description, 'Task 1'); | ||
expect(task.project, 'Project 1'); | ||
expect(task.status, 'pending'); | ||
expect(task.uuid, '123'); | ||
expect(task.urgency, 5.0); | ||
expect(task.priority, 'H'); | ||
expect(task.due, '2024-12-31'); | ||
expect(task.entry, '2024-01-01'); | ||
expect(task.modified, '2024-11-01'); | ||
}); | ||
|
||
test('toJson converts Tasks object to JSON', () { | ||
final task = Tasks( | ||
id: 1, | ||
description: 'Task 1', | ||
project: 'Project 1', | ||
status: 'pending', | ||
uuid: '123', | ||
urgency: 5.0, | ||
priority: 'H', | ||
due: '2024-12-31', | ||
end: null, | ||
entry: '2024-01-01', | ||
modified: '2024-11-01', | ||
); | ||
|
||
final json = task.toJson(); | ||
|
||
expect(json['id'], 1); | ||
expect(json['description'], 'Task 1'); | ||
expect(json['project'], 'Project 1'); | ||
expect(json['status'], 'pending'); | ||
expect(json['uuid'], '123'); | ||
expect(json['urgency'], 5.0); | ||
expect(json['priority'], 'H'); | ||
expect(json['due'], '2024-12-31'); | ||
}); | ||
}); | ||
|
||
group('fetchTasks', () { | ||
test('Fetch data successfully', () async { | ||
final responseJson = jsonEncode({'data': 'Mock data'}); | ||
when(mockClient.get( | ||
Uri.parse( | ||
'$baseUrl/tasks?email=email&origin=$origin&UUID=123&encryptionSecret=secret'), | ||
headers: { | ||
"Content-Type": "application/json", | ||
})).thenAnswer((_) async => http.Response(responseJson, 200)); | ||
|
||
final result = await fetchTasks('123', 'secret'); | ||
|
||
expect(result, isA<List<Tasks>>()); | ||
}); | ||
|
||
test('fetchTasks returns empty array', () async { | ||
const uuid = '123'; | ||
const encryptionSecret = 'secret'; | ||
|
||
expect(await fetchTasks(uuid, encryptionSecret), isEmpty); | ||
}); | ||
}); | ||
|
||
group('TaskDatabase', () { | ||
late TaskDatabase taskDatabase; | ||
|
||
setUp(() async { | ||
taskDatabase = TaskDatabase(); | ||
await taskDatabase.open(); | ||
}); | ||
|
||
test('insertTask adds a task to the database', () async { | ||
final task = Tasks( | ||
id: 1, | ||
description: 'Task 1', | ||
project: 'Project 1', | ||
status: 'pending', | ||
uuid: '123', | ||
urgency: 5.0, | ||
priority: 'H', | ||
due: '2024-12-31', | ||
end: null, | ||
entry: '2024-01-01', | ||
modified: '2024-11-01', | ||
); | ||
|
||
await taskDatabase.insertTask(task); | ||
|
||
final tasks = await taskDatabase.fetchTasksFromDatabase(); | ||
|
||
expect(tasks.length, 1); | ||
expect(tasks[0].description, 'Task 1'); | ||
}); | ||
|
||
test('deleteAllTasksInDB removes all tasks', () async { | ||
final task = Tasks( | ||
id: 1, | ||
description: 'Task 1', | ||
project: 'Project 1', | ||
status: 'pending', | ||
uuid: '123', | ||
urgency: 5.0, | ||
priority: 'H', | ||
due: '2024-12-31', | ||
end: null, | ||
entry: '2024-01-01', | ||
modified: '2024-11-01', | ||
); | ||
|
||
await taskDatabase.insertTask(task); | ||
await taskDatabase.deleteAllTasksInDB(); | ||
|
||
final tasks = await taskDatabase.fetchTasksFromDatabase(); | ||
|
||
expect(tasks.length, 0); | ||
}); | ||
}); | ||
} |
Oops, something went wrong.