1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-02 18:49:47 +00:00
app-mirror-github/test/parse_label_color.dart

23 lines
990 B
Dart
Raw Normal View History

2021-06-04 09:34:25 +00:00
import 'dart:convert';
import 'dart:ui';
import 'package:test/test.dart';
import 'package:vikunja_app/models/label.dart';
2022-09-03 15:43:16 +00:00
import 'package:vikunja_app/models/user.dart';
2021-06-04 09:34:25 +00:00
void main() {
test('label color from json', () {
final String json = '{"TaskID": 123,"id": 1,"title": "this","description": "","hex_color": "e8e8e8","created_by":{"id": 1,"username": "user","email": "test@example.com","created": 1537855131,"updated": 1545233325},"created": 1552903790,"updated": 1552903790}';
final JsonDecoder _decoder = new JsonDecoder();
Label label = Label.fromJson(_decoder.convert(json));
expect(label.color, Color(0xFFe8e8e8));
});
test('hex color string from object', () {
2022-09-03 15:43:16 +00:00
Label label = Label(id: 1, title: '', color: Color(0xFFe8e8e8), createdBy: User(id: 0, username: ''));
2021-06-04 09:34:25 +00:00
var json = label.toJSON();
2022-09-03 15:43:16 +00:00
expect(json.toString(), '{id: 1, title: , description: null, hex_color: e8e8e8, created_by: {id: 0, username: ,}, updated: null, created: null}');
2021-06-04 09:34:25 +00:00
});
}