test: Unify naming of configurations in tests
Name all instances of CameraConfiguration "config", and all instances of StreamConfiguration "cfg" accross all tests. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
3fc0189e20
commit
21e501f810
3 changed files with 22 additions and 22 deletions
|
@ -42,12 +42,12 @@ protected:
|
||||||
|
|
||||||
int run()
|
int run()
|
||||||
{
|
{
|
||||||
CameraConfiguration conf =
|
CameraConfiguration config =
|
||||||
camera_->streamConfiguration({ Stream::VideoRecording() });
|
camera_->streamConfiguration({ Stream::VideoRecording() });
|
||||||
Stream *stream = conf.front();
|
Stream *stream = config.front();
|
||||||
StreamConfiguration *sconf = &conf[stream];
|
StreamConfiguration *cfg = &config[stream];
|
||||||
|
|
||||||
if (!conf.isValid()) {
|
if (!config.isValid()) {
|
||||||
cout << "Failed to read default configuration" << endl;
|
cout << "Failed to read default configuration" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ protected:
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (camera_->configureStreams(conf)) {
|
if (camera_->configureStreams(config)) {
|
||||||
cout << "Failed to set default configuration" << endl;
|
cout << "Failed to set default configuration" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -110,10 +110,10 @@ protected:
|
||||||
while (timer.isRunning())
|
while (timer.isRunning())
|
||||||
dispatcher->processEvents();
|
dispatcher->processEvents();
|
||||||
|
|
||||||
if (completeRequestsCount_ <= sconf->bufferCount * 2) {
|
if (completeRequestsCount_ <= cfg->bufferCount * 2) {
|
||||||
cout << "Failed to capture enough frames (got "
|
cout << "Failed to capture enough frames (got "
|
||||||
<< completeRequestsCount_ << " expected at least "
|
<< completeRequestsCount_ << " expected at least "
|
||||||
<< sconf->bufferCount * 2 << ")" << endl;
|
<< cfg->bufferCount * 2 << ")" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,11 @@ class ConfigurationDefault : public CameraTest
|
||||||
protected:
|
protected:
|
||||||
int run()
|
int run()
|
||||||
{
|
{
|
||||||
CameraConfiguration conf;
|
CameraConfiguration config;
|
||||||
|
|
||||||
/* Test asking for configuration for a video stream. */
|
/* Test asking for configuration for a video stream. */
|
||||||
conf = camera_->streamConfiguration({ Stream::VideoRecording() });
|
config = camera_->streamConfiguration({ Stream::VideoRecording() });
|
||||||
if (!conf.isValid()) {
|
if (!config.isValid()) {
|
||||||
cout << "Default configuration invalid" << endl;
|
cout << "Default configuration invalid" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -31,8 +31,8 @@ protected:
|
||||||
* Test that asking for configuration for an empty array of
|
* Test that asking for configuration for an empty array of
|
||||||
* stream usages returns an empty list of configurations.
|
* stream usages returns an empty list of configurations.
|
||||||
*/
|
*/
|
||||||
conf = camera_->streamConfiguration({});
|
config = camera_->streamConfiguration({});
|
||||||
if (conf.isValid()) {
|
if (config.isValid()) {
|
||||||
cout << "Failed to retrieve configuration for empty usage list"
|
cout << "Failed to retrieve configuration for empty usage list"
|
||||||
<< endl;
|
<< endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
|
|
|
@ -18,11 +18,11 @@ class ConfigurationSet : public CameraTest
|
||||||
protected:
|
protected:
|
||||||
int run()
|
int run()
|
||||||
{
|
{
|
||||||
CameraConfiguration conf =
|
CameraConfiguration config =
|
||||||
camera_->streamConfiguration({ Stream::VideoRecording() });
|
camera_->streamConfiguration({ Stream::VideoRecording() });
|
||||||
StreamConfiguration *sconf = &conf[conf.front()];
|
StreamConfiguration *cfg = &config[config.front()];
|
||||||
|
|
||||||
if (!conf.isValid()) {
|
if (!config.isValid()) {
|
||||||
cout << "Failed to read default configuration" << endl;
|
cout << "Failed to read default configuration" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ protected:
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Test that setting the default configuration works. */
|
/* Test that setting the default configuration works. */
|
||||||
if (camera_->configureStreams(conf)) {
|
if (camera_->configureStreams(config)) {
|
||||||
cout << "Failed to set default configuration" << endl;
|
cout << "Failed to set default configuration" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,7 @@ protected:
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!camera_->configureStreams(conf)) {
|
if (!camera_->configureStreams(config)) {
|
||||||
cout << "Setting configuration on a camera not acquired succeeded when it should have failed"
|
cout << "Setting configuration on a camera not acquired succeeded when it should have failed"
|
||||||
<< endl;
|
<< endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
|
@ -64,9 +64,9 @@ protected:
|
||||||
* the default configuration of the VIMC camera is known to
|
* the default configuration of the VIMC camera is known to
|
||||||
* work.
|
* work.
|
||||||
*/
|
*/
|
||||||
sconf->size.width *= 2;
|
cfg->size.width *= 2;
|
||||||
sconf->size.height *= 2;
|
cfg->size.height *= 2;
|
||||||
if (camera_->configureStreams(conf)) {
|
if (camera_->configureStreams(config)) {
|
||||||
cout << "Failed to set modified configuration" << endl;
|
cout << "Failed to set modified configuration" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
@ -74,8 +74,8 @@ protected:
|
||||||
/*
|
/*
|
||||||
* Test that setting an invalid configuration fails.
|
* Test that setting an invalid configuration fails.
|
||||||
*/
|
*/
|
||||||
sconf->size = { 0, 0 };
|
cfg->size = { 0, 0 };
|
||||||
if (!camera_->configureStreams(conf)) {
|
if (!camera_->configureStreams(config)) {
|
||||||
cout << "Invalid configuration incorrectly accepted" << endl;
|
cout << "Invalid configuration incorrectly accepted" << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue