unit tests: fix cmocka test for pipeline connect

cmocka pipeline connect unit test is checking the successful
connection from frames count set in components. However the frames
are not set in pipeline complete if we set the frames from stream
parameters. So check now that the pipeline pointer has been set
and matches the pipeline in high level test function.

Signed-off-by: Jaska Uimonen <jaska.uimonen@intel.com>
This commit is contained in:
Jaska Uimonen 2019-06-11 13:28:54 +03:00 committed by Tomasz Lauda
parent 8bd25eac3f
commit ebf406d084
1 changed files with 5 additions and 12 deletions

View File

@ -84,11 +84,8 @@ static void test_audio_pipeline_complete_connect_downstream_variable_set
/*Testing component*/ /*Testing component*/
pipeline_complete(&result, test_data->first, test_data->second); pipeline_complete(&result, test_data->first, test_data->second);
assert_int_equal
(
result.sched_comp->frames, test_data->p.ipc_pipe.frames_per_sched
);
assert_ptr_equal(result.sched_comp->pipeline, &result); assert_ptr_equal(result.sched_comp->pipeline, &result);
assert_ptr_equal(test_data->first->pipeline, &result);
} }
/*Test going downstream ignoring sink from other pipeline*/ /*Test going downstream ignoring sink from other pipeline*/
@ -171,10 +168,8 @@ static void test_audio_pipeline_complete_connect_downstream_full(void **state)
/*Testing component*/ /*Testing component*/
pipeline_complete(&result, test_data->first, test_data->second); pipeline_complete(&result, test_data->first, test_data->second);
assert_int_equal(test_data->first->frames, assert_ptr_equal(test_data->first->pipeline, &result);
result.ipc_pipe.frames_per_sched); assert_ptr_equal(test_data->second->pipeline, &result);
assert_int_equal(test_data->second->frames,
result.ipc_pipe.frames_per_sched);
} }
/*Test going upstream all the way*/ /*Test going upstream all the way*/
@ -195,10 +190,8 @@ static void test_audio_pipeline_complete_connect_upstream_full(void **state)
/*Testing component*/ /*Testing component*/
pipeline_complete(&result, test_data->first, test_data->second); pipeline_complete(&result, test_data->first, test_data->second);
assert_int_equal(test_data->first->frames, assert_ptr_equal(test_data->first->pipeline, &result);
result.ipc_pipe.frames_per_sched); assert_ptr_equal(test_data->second->pipeline, &result);
assert_int_equal(test_data->second->frames,
result.ipc_pipe.frames_per_sched);
} }
/*Test going upstream all the way*/ /*Test going upstream all the way*/