2022-10-06 18:25:54 +02:00
|
|
|
//
|
|
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
|
//
|
|
|
|
// @dart=2.12
|
|
|
|
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
|
|
|
|
import 'package:openapi/api.dart';
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
// tests for AllJobStatusResponseDto
|
|
|
|
void main() {
|
|
|
|
// final instance = AllJobStatusResponseDto();
|
|
|
|
|
|
|
|
group('test AllJobStatusResponseDto', () {
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto thumbnailGeneration
|
|
|
|
test('to test the property `thumbnailGeneration`', () async {
|
2022-10-06 18:25:54 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto metadataExtraction
|
|
|
|
test('to test the property `metadataExtraction`', () async {
|
2022-10-06 18:25:54 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto videoConversion
|
|
|
|
test('to test the property `videoConversion`', () async {
|
2022-10-06 18:25:54 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto objectTagging
|
|
|
|
test('to test the property `objectTagging`', () async {
|
2022-12-07 00:10:04 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto clipEncoding
|
|
|
|
test('to test the property `clipEncoding`', () async {
|
2023-03-20 17:55:28 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto storageTemplateMigration
|
|
|
|
test('to test the property `storageTemplateMigration`', () async {
|
2023-03-20 17:55:28 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto backgroundTask
|
|
|
|
test('to test the property `backgroundTask`', () async {
|
2023-03-20 17:55:28 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto search
|
|
|
|
test('to test the property `search`', () async {
|
2022-12-19 20:13:10 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto recognizeFaces
|
|
|
|
test('to test the property `recognizeFaces`', () async {
|
2023-05-17 19:07:17 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-06-01 12:32:51 +02:00
|
|
|
// JobStatusDto sidecar
|
|
|
|
test('to test the property `sidecar`', () async {
|
feat(server): xmp sidecar metadata (#2466)
* initial commit for XMP sidecar support
* Added support for 'missing' metadata files to include those without sidecar files, now detects sidecar files in the filesystem for media already ingested but the sidecar was created afterwards
* didn't mean to commit default log level during testing
* new sidecar logic for video metadata as well
* Added xml mimetype for sidecars only
* don't need capture group for this regex
* wrong default value reverted
* simplified the move here - keep it in the same try catch since the outcome is to move the media back anyway
* simplified setter logic
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
* simplified logic per suggestions
* sidecar is now its own queue with a discover and sync, updated UI for the new job queueing
* queue a sidecar job for every asset based on discovery or sync, though the logic is almost identical aside from linking the sidecar
* now queue sidecar jobs for each assset, though logic is mostly the same between discovery and sync
* simplified logic of filename extraction and asset instantiation
* not sure how that got deleted..
* updated code per suggestions and comments in the PR
* stat was not being used, removed the variable set
* better type checking, using in-scope variables for exif getter instead of passing in every time
* removed commented out test
* ran and resolved all lints, formats, checks, and tests
* resolved suggested change in PR
* made getExifProperty more dynamic with multiple possible args for fallbacks, fixed typo, used generic in function for better type checking
* better error handling and moving files back to positions on move or save failure
* regenerated api
* format fixes
* Added XMP documentation
* documentation typo
* Merged in main
* missed merge conflict
* more changes due to a merge
* Resolving conflicts
* added icon for sidecar jobs
---------
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
2023-05-25 03:59:30 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2022-10-06 18:25:54 +02:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|