Skip to content

Commit 3e66242

Browse files
committed
Update SamplesTest.cs
1 parent 5242691 commit 3e66242

File tree

2 files changed

+70
-65
lines changed

2 files changed

+70
-65
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ jobs:
4040
shell: bash
4141
working-directory: templates
4242

43-
- run: dotnet run -c Release --no-build -f net8.0 --project src/docfx -- docs/docfx.json
43+
- name: Install Chromium Headless Shell
44+
shell: pwsh
45+
working-directory: src/docfx/bin/Release/net8.0
46+
run: |
47+
$env:PLAYWRIGHT_NODEJS_PATH = (Get-Command node).Path
48+
./playwright.ps1 install chromium --only-shell
4449
4550
- run: dotnet test -c Release -f net8.0 --no-build --consoleLoggerParameters:"Summary;Verbosity=Minimal" -- --seed ${{ env.seed }} --no-ansi --no-progress
4651
id: test-net80

test/docfx.Snapshot.Tests/SamplesTest.cs

+64-64
Original file line numberDiff line numberDiff line change
@@ -47,70 +47,70 @@ public SamplesFactAttribute()
4747
}
4848
}
4949

50-
////[SamplesFact]
51-
////[UseCustomBranchName("main")]
52-
////public async Task Seed()
53-
////{
54-
//// var samplePath = $"{s_samplesDir}/seed";
55-
//// Clean(samplePath);
56-
57-
//// Exec("dotnet", $"build \"{s_samplesDir}/seed/dotnet/assembly/BuildFromAssembly.csproj\"");
58-
59-
//// if (Debugger.IsAttached)
60-
//// {
61-
//// Program.Main([$"{samplePath}/docfx.json"]);
62-
//// }
63-
//// else
64-
//// {
65-
//// var docfxPath = Path.GetFullPath(OperatingSystem.IsWindows() ? "docfx.exe" : "docfx");
66-
//// Exec(docfxPath, $"{samplePath}/docfx.json");
67-
//// }
68-
69-
//// Parallel.ForEach(Directory.EnumerateFiles($"{samplePath}/_site", "*.pdf", SearchOption.AllDirectories), PdfToJson);
70-
71-
//// await VerifyDirectory($"{samplePath}/_site", IncludeFile, fileScrubber: ScrubFile).AutoVerify(includeBuildServer: false);
72-
73-
//// void PdfToJson(string path)
74-
//// {
75-
//// using var document = PdfDocument.Open(path);
76-
77-
//// var pdf = new
78-
//// {
79-
//// document.NumberOfPages,
80-
//// Pages = document.GetPages().Select(p => new
81-
//// {
82-
//// p.Number,
83-
//// p.NumberOfImages,
84-
//// Text = ExtractText(p),
85-
//// Links = p.ExperimentalAccess.GetAnnotations().Select(ToLink).ToArray(),
86-
//// }).ToArray(),
87-
//// Bookmarks = document.TryGetBookmarks(out var bookmarks) ? ToBookmarks(bookmarks.Roots) : null,
88-
//// };
89-
90-
//// var json = JsonSerializer.Serialize(pdf, new JsonSerializerOptions
91-
//// {
92-
//// WriteIndented = true,
93-
//// DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
94-
//// });
95-
96-
//// File.WriteAllText(Path.ChangeExtension(path, ".pdf.json"), json);
97-
98-
//// object ToLink(Annotation a) => a.Action switch
99-
//// {
100-
//// GoToAction g => new { Goto = g.Destination },
101-
//// UriAction u => new { u.Uri },
102-
//// };
103-
104-
//// object ToBookmarks(IEnumerable<BookmarkNode> nodes)
105-
//// {
106-
//// return nodes.Select(node => node switch
107-
//// {
108-
//// DocumentBookmarkNode d => (object)new { node.Title, Children = ToBookmarks(node.Children), d.Destination },
109-
//// UriBookmarkNode d => new { node.Title, Children = ToBookmarks(node.Children), d.Uri },
110-
//// }).ToArray();
111-
//// }
112-
//// }
113-
////}
50+
[SamplesFact]
51+
[UseCustomBranchName("main")]
52+
public async Task Seed()
53+
{
54+
var samplePath = $"{s_samplesDir}/seed";
55+
Clean(samplePath);
56+
57+
Exec("dotnet", $"build \"{s_samplesDir}/seed/dotnet/assembly/BuildFromAssembly.csproj\"");
58+
59+
if (Debugger.IsAttached)
60+
{
61+
Program.Main([$"{samplePath}/docfx.json"]);
62+
}
63+
else
64+
{
65+
var docfxPath = Path.GetFullPath(OperatingSystem.IsWindows() ? "docfx.exe" : "docfx");
66+
Exec(docfxPath, $"{samplePath}/docfx.json");
67+
}
68+
69+
Parallel.ForEach(Directory.EnumerateFiles($"{samplePath}/_site", "*.pdf", SearchOption.AllDirectories), PdfToJson);
70+
71+
await VerifyDirectory($"{samplePath}/_site", IncludeFile, fileScrubber: ScrubFile).AutoVerify(includeBuildServer: false);
72+
73+
void PdfToJson(string path)
74+
{
75+
using var document = PdfDocument.Open(path);
76+
77+
var pdf = new
78+
{
79+
document.NumberOfPages,
80+
Pages = document.GetPages().Select(p => new
81+
{
82+
p.Number,
83+
p.NumberOfImages,
84+
Text = ExtractText(p),
85+
Links = p.ExperimentalAccess.GetAnnotations().Select(ToLink).ToArray(),
86+
}).ToArray(),
87+
Bookmarks = document.TryGetBookmarks(out var bookmarks) ? ToBookmarks(bookmarks.Roots) : null,
88+
};
89+
90+
var json = JsonSerializer.Serialize(pdf, new JsonSerializerOptions
91+
{
92+
WriteIndented = true,
93+
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
94+
});
95+
96+
File.WriteAllText(Path.ChangeExtension(path, ".pdf.json"), json);
97+
98+
object ToLink(Annotation a) => a.Action switch
99+
{
100+
GoToAction g => new { Goto = g.Destination },
101+
UriAction u => new { u.Uri },
102+
};
103+
104+
object ToBookmarks(IEnumerable<BookmarkNode> nodes)
105+
{
106+
return nodes.Select(node => node switch
107+
{
108+
DocumentBookmarkNode d => (object)new { node.Title, Children = ToBookmarks(node.Children), d.Destination },
109+
UriBookmarkNode d => new { node.Title, Children = ToBookmarks(node.Children), d.Uri },
110+
}).ToArray();
111+
}
112+
}
113+
}
114114

115115
[SamplesFact]
116116
[UseCustomBranchName("main")]

0 commit comments

Comments
 (0)