blob: 53ee021d33ca39b178ffb1c0f455ec14495ae900 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/* 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 that asking for default configuration for a valid
* array of streams returns something valid.
*/
std::set<Stream *> streams = { *camera_->streams().begin() };
conf = camera_->streamConfiguration(streams);
if (conf.empty()) {
cout << "Failed to retrieve configuration for valid streams"
<< endl;
return TestFail;
}
if (!configurationValid(conf)) {
cout << "Default configuration invalid" << endl;
return TestFail;
}
/*
* Test that asking for configuration for an empty array of
* streams returns an empty list of configurations.
*/
std::set<Stream *> streams_empty = {};
conf = camera_->streamConfiguration(streams_empty);
if (!conf.empty()) {
cout << "Failed to retrieve configuration for empty streams"
<< endl;
return TestFail;
}
/*
* Test that asking for configuration for an array of bad streams
* returns an empty list of configurations.
*/
Stream *stream_bad = reinterpret_cast<Stream *>(0xdeadbeef);
std::set<Stream *> streams_bad = { stream_bad };
conf = camera_->streamConfiguration(streams_bad);
if (!conf.empty()) {
cout << "Failed to retrieve configuration for bad streams"
<< endl;
return TestFail;
}
return TestPass;
}
};
} /* namespace */
TEST_REGISTER(ConfigurationDefault);
|