Newer
Older
function [passed,results] = run_gdat_tests(test_case,coverage_report)
% Test runner for generic toolbox tests
if nargin==0 || isempty(test_case)
if nargin < 2
coverage_report = false; % default
assert(~(coverage_report && strcmpi(test_case,'coverage')),'coverage_report=true should only be used with test_case=''coverage''');
needXML=~isempty(getenv('GITLAB_CI')) && ~verLessThan('matlab','8.6.0');
needCOV=~isempty(getenv('GITLAB_CI')) && ~verLessThan('matlab','9.6.0') || coverage_report;
%% Default outputs
passed=false; results=[]; % default outputs
%% Import some classes we need
import matlab.unittest.selectors.HasTag;
import matlab.unittest.constraints.ContainsSubstring;
import matlab.unittest.selectors.HasName;
if needXML
import matlab.unittest.plugins.XMLPlugin;
end
%% Paths
% add path of toolbox to make sure it is in the path
tbxpath = fileparts(mfilename('fullpath'));
addpath(tbxpath); % add default path
projectpath = getenv('CI_PROJECT_DIR');
if isempty(projectpath), projectpath = tbxpath; end
% add additional paths present in a local setpaths_* file
setpathsfile = dir(fullfile(tbxpath,'setpaths_*'));
if numel(setpathsfile)==1
fname = fullfile(tbxpath,setpathsfile.name);
fprintf('adding extra paths by calling %s\n',fname);
run(fname); % run file to add paths
elseif numel(setpathsfile)>1
error('multiple setpaths_* files found!');
end
%% Generate test suite
testspath = fullfile(tbxpath,'tests');
suite_all = [matlab.unittest.TestSuite.fromFile(fullfile(testspath,'test_requestnames_tcv.m')),...
matlab.unittest.TestSuite.fromFile(fullfile(testspath,'test_tcv_get_ids.m'))];
[~,s] = lastwarn();
if isequal(s,'MATLAB:unittest:TestSuite:FileExcluded')
fprintf('File excluded during test suite creation - possible syntax errors in a test class');
return
end
switch lower(test_case)
case 'basic'
s = ~HasTag('slow');
case 'basic-tcv'
s = ~HasTag('slow') & HasName(ContainsSubstring('tcv'));

Olivier Sauter
committed
case 'tcv'
s = HasName(ContainsSubstring('tcv'));

Olivier Sauter
committed
case 'aug'
s = HasName(ContainsSubstring('aug'));
end
if isempty(suite)
fprintf('\nEmpty test suite returned for TestTag=''%s''\n',test_case); return;
end
%% run it
fprintf('Start test case: %s\n%s\n\n',test_case,datestr(now));
runner = matlab.unittest.TestRunner.withTextOutput;
if needXML
% Add some JUnit XML file with tests results
xmlFile = fullfile(projectpath,sprintf('test_%s_%s.xml',test_case,version('-release')));
fprintf('\tGenerating JUnit XML report at %s\n',xmlFile);
p = XMLPlugin.producingJUnitFormat(xmlFile);
runner.addPlugin(p)
end
if needCOV
% Add some code coverage report
switch lower(test_case)
case 'coverage'
% Produce HTML report
reportFolder = fullfile(projectpath,sprintf('test_%s_cov',version('-release')));
reportFormat = matlab.unittest.plugins.codecoverage.CoverageReport(reportFolder);
otherwise
% Produce XML file in Cobertura format (for Gitlab MR viz.)
xmlFile = fullfile(projectpath,sprintf('test_%s_%s_cov.xml',test_case,version('-release')));
reportFormat = matlab.unittest.plugins.codecoverage.CoberturaFormat(xmlFile);
end
p = matlab.unittest.plugins.CodeCoveragePlugin.forFolder(fileparts(mfilename('fullpath')),...
'IncludingSubfolders',true,'Producing',reportFormat);
runner.addPlugin(p)
end
results = runner.run(suite);
disp(table(results));
fprintf('\nTotal test duration: %5.2fs\n',sum(table(results).Duration))
if all([results.Passed])
fprintf('\nPassed all tests\n')
passed = true;
elseif any([results.Failed])
fprintf('\nSome tests Failed\n')
disp(table(results([results.Failed])))
elseif any([results.Incomplete])
fprintf('\nSome tests Incomplete\n')
disp(table(results([results.Incomplete])));
passed = true; % pass tests even if some were skipped
else
% the conditions above should cover all cases, otherwise
error('something is very wrong - please check')
end