diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-16 14:02:18 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-19 15:21:14 -0500 |
commit | f788edd675e3662192c2421ae142fb1f42d3da49 (patch) | |
tree | 3d4c10c25b31bf1ffcf8190c7951577281e83d76 /progtest/src | |
parent | 253f8458039f1331a6b62f3a8a6d3510ae49868b (diff) | |
download | tame-f788edd675e3662192c2421ae142fb1f42d3da49.tar.gz tame-f788edd675e3662192c2421ae142fb1f42d3da49.tar.bz2 tame-f788edd675e3662192c2421ae142fb1f42d3da49.zip |
Initial embedding of YAML test case runner
Diffstat (limited to 'progtest/src')
-rw-r--r-- | progtest/src/env.js | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/progtest/src/env.js b/progtest/src/env.js new file mode 100644 index 0000000..7c09cf6 --- /dev/null +++ b/progtest/src/env.js @@ -0,0 +1,59 @@ +/** + * Environment-specific runner initialization + * + * Copyright (C) 2018 R-T Specialty, LLC. + * + * This file is part of TAME. + * + * TAME is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +"use strict"; + +const yaml_reader = require( 'js-yaml' ); + +const { + TestCase, + TestRunner, + + reader: { + ConstResolver, + DateResolver, + YamlTestReader + }, + + reporter: { + ConsoleTestReporter + }, +} = require( '../src' ); + + +module.exports = { + console: ( program, stdout ) => + { + const runner = TestRunner( + ConsoleTestReporter( stdout ), + program + ); + + const reader = YamlTestReader + .use( DateResolver ) + .use( ConstResolver( program ) ) + ( yaml_reader, TestCase ); + + return yaml => runner.runTests( + reader.loadCases( yaml ) + ); + }, +}; |