@@ -47,70 +47,70 @@ public SamplesFactAttribute()
47
47
}
48
48
}
49
49
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
+ }
114
114
115
115
[ SamplesFact ]
116
116
[ UseCustomBranchName ( "main" ) ]
0 commit comments