immich/mobile/openapi/test/people_api_test.dart

120 lines
3 KiB
Dart

//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// 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 PeopleApi
void main() {
// final instance = PeopleApi();
group('tests for PeopleApi', () {
// Create a person
//
// Create a new person that can have multiple faces assigned to them.
//
//Future<PersonResponseDto> createPerson(PersonCreateDto personCreateDto) async
test('test createPerson', () async {
// TODO
});
// Delete people
//
// Bulk delete a list of people at once.
//
//Future deletePeople(BulkIdsDto bulkIdsDto) async
test('test deletePeople', () async {
// TODO
});
// Delete person
//
// Delete an individual person.
//
//Future deletePerson(String id) async
test('test deletePerson', () async {
// TODO
});
// Get all people
//
// Retrieve a list of all people.
//
//Future<PeopleResponseDto> getAllPeople({ String closestAssetId, String closestPersonId, int page, int size, bool withHidden }) async
test('test getAllPeople', () async {
// TODO
});
// Get a person
//
// Retrieve a person by id.
//
//Future<PersonResponseDto> getPerson(String id) async
test('test getPerson', () async {
// TODO
});
// Get person statistics
//
// Retrieve statistics about a specific person.
//
//Future<PersonStatisticsResponseDto> getPersonStatistics(String id) async
test('test getPersonStatistics', () async {
// TODO
});
// Get person thumbnail
//
// Retrieve the thumbnail file for a person.
//
//Future<MultipartFile> getPersonThumbnail(String id) async
test('test getPersonThumbnail', () async {
// TODO
});
// Merge people
//
// Merge a list of people into the person specified in the path parameter.
//
//Future<List<BulkIdResponseDto>> mergePerson(String id, MergePersonDto mergePersonDto) async
test('test mergePerson', () async {
// TODO
});
// Reassign faces
//
// Bulk reassign a list of faces to a different person.
//
//Future<List<PersonResponseDto>> reassignFaces(String id, AssetFaceUpdateDto assetFaceUpdateDto) async
test('test reassignFaces', () async {
// TODO
});
// Update people
//
// Bulk update multiple people at once.
//
//Future<List<BulkIdResponseDto>> updatePeople(PeopleUpdateDto peopleUpdateDto) async
test('test updatePeople', () async {
// TODO
});
// Update person
//
// Update an individual person.
//
//Future<PersonResponseDto> updatePerson(String id, PersonUpdateDto personUpdateDto) async
test('test updatePerson', () async {
// TODO
});
});
}