mirror of
https://github.com/dlang/tools.git
synced 2025-04-25 20:51:00 +03:00
274 lines
8.4 KiB
D
Executable file
274 lines
8.4 KiB
D
Executable file
#!/usr/bin/env dub
|
|
/++dub.sdl:
|
|
name "tests_extractor"
|
|
dependency "libdparse" version="~>0.7.0-beta.4"
|
|
+/
|
|
/*
|
|
* Parses all public unittests that are visible on dlang.org
|
|
* (= annotated with three slashes)
|
|
*
|
|
* Copyright (C) 2017 by D Language Foundation
|
|
*
|
|
* Author: Sebastian Wilzbach
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
// Written in the D programming language.
|
|
|
|
import dparse.ast;
|
|
import std.algorithm;
|
|
import std.ascii : whitespace;
|
|
import std.conv;
|
|
import std.exception;
|
|
import std.experimental.logger;
|
|
import std.file;
|
|
import std.path;
|
|
import std.range;
|
|
import std.stdio;
|
|
|
|
class TestVisitor : ASTVisitor
|
|
{
|
|
File outFile;
|
|
ubyte[] sourceCode;
|
|
string moduleName;
|
|
|
|
this(File outFile, ubyte[] sourceCode)
|
|
{
|
|
this.outFile = outFile;
|
|
this.sourceCode = sourceCode;
|
|
}
|
|
|
|
alias visit = ASTVisitor.visit;
|
|
|
|
override void visit(const Module m)
|
|
{
|
|
if (m.moduleDeclaration !is null)
|
|
{
|
|
moduleName = m.moduleDeclaration.moduleName.identifiers.map!(i => i.text).join(".");
|
|
}
|
|
else
|
|
{
|
|
// fallback: convert the file path to its module path, e.g. std/uni.d -> std.uni
|
|
moduleName = outFile.name.replace(".d", "").replace(dirSeparator, ".").replace(".package", "");
|
|
}
|
|
m.accept(this);
|
|
}
|
|
|
|
override void visit(const Declaration decl)
|
|
{
|
|
if (decl.unittest_ !is null && hasDdocHeader(sourceCode, decl))
|
|
print(decl.unittest_);
|
|
|
|
decl.accept(this);
|
|
}
|
|
|
|
private:
|
|
void print(const Unittest u)
|
|
{
|
|
|
|
// write the origin source code line
|
|
outFile.writefln("// Line %d", u.line);
|
|
|
|
// write the unittest block
|
|
outFile.write("unittest\n{\n");
|
|
scope(exit) outFile.writeln("}\n");
|
|
|
|
// add an import to the current module
|
|
outFile.writefln(" import %s;", moduleName);
|
|
|
|
// write the content of the unittest block (but skip the first brace)
|
|
auto k = cast(immutable(char)[]) sourceCode[u.blockStatement.startLocation .. u.blockStatement.endLocation];
|
|
k.findSkip("{");
|
|
outFile.write(k);
|
|
|
|
// if the last line contains characters, we want to add an extra line for increased visual beauty
|
|
if (k[$ - 1] != '\n')
|
|
outFile.writeln;
|
|
}
|
|
}
|
|
|
|
void parseFile(File inFile, File outFile)
|
|
{
|
|
import dparse.lexer;
|
|
import dparse.parser : parseModule;
|
|
import dparse.rollback_allocator : RollbackAllocator;
|
|
import std.array : uninitializedArray;
|
|
|
|
if (inFile.size == 0)
|
|
warningf("%s is empty", inFile.name);
|
|
|
|
ubyte[] sourceCode = uninitializedArray!(ubyte[])(to!size_t(inFile.size));
|
|
inFile.rawRead(sourceCode);
|
|
LexerConfig config;
|
|
auto cache = StringCache(StringCache.defaultBucketCount);
|
|
auto tokens = getTokensForParser(sourceCode, config, &cache);
|
|
|
|
RollbackAllocator rba;
|
|
auto m = parseModule(tokens.array, inFile.name, &rba);
|
|
auto visitor = new TestVisitor(outFile, sourceCode);
|
|
visitor.visit(m);
|
|
}
|
|
|
|
void parseFileDir(string inputDir, string fileName, string outputDir)
|
|
{
|
|
import std.path : buildPath, dirSeparator, buildNormalizedPath;
|
|
|
|
// file name without its parent directory, e.g. std/uni.d
|
|
string fileNameNormalized = (inputDir == "." ? fileName : fileName.replace(inputDir, ""));
|
|
|
|
// remove leading dots or slashes
|
|
while (!fileNameNormalized.empty && fileNameNormalized[0] == '.')
|
|
fileNameNormalized = fileNameNormalized[1 .. $];
|
|
if (fileNameNormalized.length >= dirSeparator.length &&
|
|
fileNameNormalized[0 .. dirSeparator.length] == dirSeparator)
|
|
fileNameNormalized = fileNameNormalized[dirSeparator.length .. $];
|
|
|
|
// convert the file path to a nice output file, e.g. std/uni.d -> std_uni.d
|
|
string outName = fileNameNormalized.replace(dirSeparator, "_");
|
|
|
|
parseFile(File(fileName), File(buildPath(outputDir, outName), "w"));
|
|
}
|
|
|
|
void main(string[] args)
|
|
{
|
|
import std.getopt;
|
|
import std.variant : Algebraic, visit;
|
|
|
|
string inputDir;
|
|
string outputDir = "./out";
|
|
string ignoredFilesStr;
|
|
string modulePrefix = "";
|
|
|
|
auto helpInfo = getopt(args, config.required,
|
|
"inputdir|i", "Folder to start the recursive search for unittest blocks (can be a single file)", &inputDir,
|
|
"outputdir|o", "Folder to which the extracted test files should be saved (stdout for a single file)", &outputDir,
|
|
"ignore", "Comma-separated list of files to exclude (partial matching is supported)", &ignoredFilesStr);
|
|
|
|
if (helpInfo.helpWanted)
|
|
{
|
|
return defaultGetoptPrinter(`phobos_tests_extractor
|
|
Searches the input directory recursively for public unittest blocks, i.e.
|
|
unittest blocks that are annotated with three slashes (///).
|
|
The tests will be extracted as one file for each source file
|
|
to in the output directory.
|
|
`, helpInfo.options);
|
|
}
|
|
|
|
inputDir = inputDir.asNormalizedPath.array;
|
|
Algebraic!(string, File) outputLocation = cast(string) outputDir.asNormalizedPath.array;
|
|
|
|
if (!exists(outputDir))
|
|
mkdir(outputDir);
|
|
|
|
// if the module prefix is std -> add a dot for the next modules to follow
|
|
if (!modulePrefix.empty)
|
|
modulePrefix ~= '.';
|
|
|
|
DirEntry[] files;
|
|
|
|
if (inputDir.isFile)
|
|
{
|
|
files = [DirEntry(inputDir)];
|
|
inputDir = ".";
|
|
// for single files use stdout by default
|
|
if (outputDir == "./out")
|
|
{
|
|
outputLocation = stdout;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
files = dirEntries(inputDir, SpanMode.depth).filter!(
|
|
a => a.name.endsWith(".d") && !a.name.canFind(".git")).array;
|
|
}
|
|
|
|
auto ignoringFiles = ignoredFilesStr.split(",");
|
|
|
|
foreach (file; files)
|
|
{
|
|
if (!ignoringFiles.any!(x => file.name.canFind(x)))
|
|
{
|
|
stderr.writeln("parsing ", file);
|
|
outputLocation.visit!(
|
|
(string outputFolder) => parseFileDir(inputDir, file, outputFolder),
|
|
(File outputFile) => parseFile(File(file.name, "r"), outputFile),
|
|
);
|
|
}
|
|
else
|
|
{
|
|
stderr.writeln("ignoring ", file);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool hasDdocHeader(const(ubyte)[] sourceCode, const Declaration decl)
|
|
{
|
|
import std.algorithm.comparison : min;
|
|
|
|
bool hasComment;
|
|
size_t firstPos = size_t.max;
|
|
|
|
if (decl.unittest_ !is null)
|
|
{
|
|
firstPos = decl.unittest_.location;
|
|
hasComment = decl.unittest_.comment.length > 0;
|
|
}
|
|
else if (decl.functionDeclaration !is null)
|
|
{
|
|
// skip the return type
|
|
firstPos = sourceCode.skipPreviousWord(decl.functionDeclaration.name.index);
|
|
if (auto stClasses = decl.functionDeclaration.storageClasses)
|
|
firstPos = min(firstPos, stClasses[0].token.index);
|
|
hasComment = decl.functionDeclaration.comment.length > 0;
|
|
}
|
|
else if (decl.templateDeclaration !is null)
|
|
{
|
|
// skip the word `template`
|
|
firstPos = sourceCode.skipPreviousWord(decl.templateDeclaration.name.index);
|
|
hasComment = decl.templateDeclaration.comment.length > 0;
|
|
}
|
|
|
|
// libdparse will put any ddoc comment with at least one character in the comment field
|
|
if (hasComment)
|
|
return true;
|
|
|
|
firstPos = min(firstPos, getAttributesStartLocation(decl.attributes));
|
|
|
|
// scan the previous line for ddoc header -> skip to last real character
|
|
auto prevLine = sourceCode[0 .. firstPos].retro.find!(c => whitespace.countUntil(c) < 0);
|
|
|
|
// if there is no comment annotation, only three possible cases remain.
|
|
// one line ddoc: ///, multi-line comments: /** */ or /++ +/
|
|
return prevLine.filter!(c => !whitespace.canFind(c)).startsWith("///", "/+++/", "/***/") > 0;
|
|
}
|
|
|
|
/**
|
|
The location of unittest token is known, but there might be attributes preceding it.
|
|
*/
|
|
private size_t getAttributesStartLocation(const Attribute[] attrs)
|
|
{
|
|
import dparse.lexer : tok;
|
|
|
|
if (attrs.length == 0)
|
|
return size_t.max;
|
|
|
|
if (attrs[0].atAttribute !is null)
|
|
return attrs[0].atAttribute.startLocation;
|
|
|
|
if (attrs[0].attribute != tok!"")
|
|
return attrs[0].attribute.index;
|
|
|
|
return size_t.max;
|
|
}
|
|
|
|
private size_t skipPreviousWord(const(ubyte)[] sourceCode, size_t index)
|
|
{
|
|
return index - sourceCode[0 .. index]
|
|
.retro
|
|
.enumerate
|
|
.find!(c => !whitespace.canFind(c.value))
|
|
.find!(c => whitespace.canFind(c.value))
|
|
.front.index;
|
|
}
|