blob: 09861716973d752ce945f30f1bfcc21e2fd29ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera Camera API tests
*/
#include <iostream>
#include "camera_test.h"
using namespace std;
namespace {
class ConfigurationDefault : public CameraTest
{
protected:
int run()
{
std::map<Stream *, StreamConfiguration> conf;
/* Test asking for configuration for a video stream. */
conf = camera_->streamConfiguration({ Stream::VideoRecording() });
if (conf.empty()) {
cout << "Failed to retrieve configuration for video streams"
<< endl;
return TestFail;
}
if (!configurationValid(conf)) {
cout << "Default configuration invalid" << endl;
return TestFail;
}
/*
* Test that asking for configuration for an empty array of
* stream usages returns an empty list of configurations.
*/
conf = camera_->streamConfiguration({});
if (!conf.empty()) {
cout << "Failed to retrieve configuration for empty usage list"
<< endl;
return TestFail;
}
return TestPass;
}
};
} /* namespace */
TEST_REGISTER(ConfigurationDefault);
|