Skip to content

Commit

Permalink
setup: cli
Browse files Browse the repository at this point in the history
  • Loading branch information
JairusSW committed Jun 28, 2024
1 parent 310ebd4 commit 52472bf
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 2 deletions.
3 changes: 3 additions & 0 deletions as-test.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{

}
1 change: 1 addition & 0 deletions bin/build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"use strict";
19 changes: 19 additions & 0 deletions bin/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import chalk from "chalk";
import { version } from "../package.json";
const _args = process.argv.slice(2);
const options = [];
const args = [];
for (const arg of _args) {
if (arg.startsWith("--"))
options.push(arg);
else
args.push(arg);
}
console.log(chalk.bold.blueBright("as-test") + " is a testing framework for AssemblyScript. " + chalk.dim("(v" + version + ")") + "\n");
console.log(chalk.bold("Usage: as-test <command>") + " " + chalk.bold.blueBright("[...flags]") + " " + chalk.bold("[...args]") + " " + chalk.dim("(alias: ast)") + "\n");
console.log(chalk.bold("Commands:"));
console.log(" " + chalk.bold.blueBright("run") + " " + chalk.dim("my-test.spec.ts") + " " + "Build and/or run unit tests");
console.log(" " + chalk.bold.blueBright("suite") + " " + chalk.dim("<suite-name>") + " " + "Build and/or run unit tests");
console.log(" " + chalk.bold.blueBright("build") + " " + chalk.dim("my-test.spec.ts") + " " + "Build unit tests and compile" + "\n");
console.log(" " + chalk.bold.magentaBright("init") + " " + chalk.dim("") + " " + "Initialize an empty testing template");
console.log(" " + chalk.bold.magentaBright("config") + " " + chalk.dim("my-config.json") + " " + "Specify the configuration file");
40 changes: 40 additions & 0 deletions cli/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import chalk from "chalk";
import { version } from "../package.json";

const _args = process.argv.slice(2);
const options: string[] = [];
const args: string[] = [];

for (const arg of _args) {
if (arg.startsWith("-")) options.push(arg);
else args.push(arg);
}

if (!args.length && (options.includes("--version") || options.includes("-v"))) {
console.log("as-test" + " " + version.toString());
} else if (!args.length || (!args.length && options.includes("--help"))) {
console.log(chalk.bold.blueBright("as-test") + " is a testing framework for AssemblyScript. " + chalk.dim("(v" + version + ")") + "\n");

console.log(chalk.bold("Usage: as-test") + " " + chalk.dim("<command>") + " " + chalk.bold.blueBright("[...flags]") + " " + chalk.bold("[...args]") + " " + chalk.dim("(alias: ast)") + "\n");

console.log(chalk.bold("Commands:"));
console.log(" " + chalk.bold.blueBright("run") + " " + chalk.dim("<my-test.spec.ts>") + " " + "Run unit tests with selected runtime");
console.log(" " + chalk.bold.blueBright("build") + " " + chalk.dim("<my-test.spec.ts>") + " " + "Build unit tests and compile" + "\n");

console.log(" " + chalk.bold.magentaBright("init") + " " + chalk.dim("") + " " + "Initialize an empty testing template");
console.log(" " + chalk.bold.magentaBright("config") + " " + chalk.dim("my-config.json") + " " + "Specify the configuration file");
console.log(" " + chalk.bold.magentaBright("reporter") + " " + chalk.dim("<tap>") + " " + "Specify the test reporter to use");
console.log(" " + chalk.bold.magentaBright("use") + " " + chalk.dim("wasmtime") + " " + "Specify the runtime to use" + "\n");

console.log(chalk.bold("Flags:"));

console.log(" " + chalk.dim("run") + " " + chalk.bold.blue("--coverage") + " " + "Use code coverage");
console.log(" " + chalk.dim("use") + " " + chalk.bold.blue("--list") + " " + "List supported runtimes");
console.log(" " + chalk.dim("reporter") + " " + chalk.bold.blue("--list") + " " + "List supported reporters");
console.log(" " + chalk.dim("<command>") + " " + chalk.bold.blue("--help") + " " + "Print info about command" + "\n");

console.log(chalk.dim("If your using this, consider dropping a star, it would help a lot!") + "\n");

console.log("View the repo: " + chalk.magenta("https://github.com/JairusSW/as-test"));
console.log("View the docs: " + chalk.blue("https://docs.jairus.dev/as-test"));
}
63 changes: 63 additions & 0 deletions cli/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "es2020" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "es2020" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */
"declaration": false /* Generates corresponding '.d.ts' file. */,
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": false /* Generates corresponding '.map' file. */,
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "../bin" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
"downlevelIteration": true /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */,
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'Unknown' type. */,
"strictNullChecks": true /* Enable strict null checks. */,
"strictFunctionTypes": true /* Enable strict checking of function types. */,
"strictBindCallApply": true /* Enable strict 'bind', 'call', and 'apply' methods on functions. */,
"strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. */,
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'Unknown' type. */,
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
/* Additional Checks */
"noUnusedLocals": true /* Report errors on unused locals. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
"noUncheckedIndexedAccess": true /* Include 'undefined' in index signature results */,
"noPropertyAccessFromIndexSignature": true /* Require undeclared properties from index signatures to use element accesses. */,
/* Module Resolution Options */
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": false /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
/* Source Map Options */
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
/* Experimental Options */
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}
}
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
"pretest": "TEST_DEBUG=all asc assembly/test.ts -o build/test.wasm --transform ./transform --bindings esm --config ./node_modules/@assemblyscript/wasi-shim/asconfig.json",
"bench:wasmtime": "wasmtime ./build/bench.wasm",
"build:transform": "tsc -p ./transform",
"build:cli": "tsc -p ./cli",
"prettier": "as-prettier -w ."
},
"devDependencies": {
"as-test": "./",
"@assemblyscript/wasi-shim": "^0.1.0",
"@types/micromatch": "^4.0.7",
"@types/micromatch": "^4.0.8",
"assemblyscript": "^0.27.28",
"assemblyscript-prettier": "^3.0.1",
"jest": "^29.7.0",
Expand All @@ -25,7 +26,7 @@
"json-as": "^0.9.8"
},
"dependencies": {
"as-console": "^1.0.1",
"as-console": "^1.0.2",
"as-rainbow": "^0.1.0",
"as-string-sink": "^0.5.3",
"as-variant": "^0.4.1",
Expand Down Expand Up @@ -55,5 +56,9 @@
"type": "module",
"publishConfig": {
"@JairusSW:registry": "https://npm.pkg.github.com"
},
"bin": {
"as-test": "./bin/index.js",
"ast": "./bin/index.js"
}
}
Empty file removed src/cli.ts
Empty file.

0 comments on commit 52472bf

Please sign in to comment.