1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021-2024 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See https://swift.org/LICENSE.txt for license information
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import Foundation
import XCTest
@testable import SwiftDocC
import SwiftDocCTestUtilities
import Markdown
import SymbolKit
class RenderNodeTranslatorTests: XCTestCase {
private func findDiscussion(forSymbolPath: String, configureBundle: ((URL) throws -> Void)? = nil) throws -> ContentRenderSection? {
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", configureBundle: configureBundle)
let node = try context.entity(with: ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: forSymbolPath, sourceLanguage: .swift))
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: node.reference, source: nil)
let renderNode = translator.visit(node.semantic as! Symbol) as! RenderNode
guard let section = renderNode.primaryContentSections.last(where: { section -> Bool in
return section.kind == .content
}), let discussion = section as? ContentRenderSection else {
XCTFail("Could not find discussion")
return nil
}
return discussion
}
private func findParagraph(withPrefix: String, forSymbolPath: String) throws -> [RenderInlineContent]? {
guard let discussion = try findDiscussion(forSymbolPath: forSymbolPath) else {
return nil
}
// In the rendered content find the link exercising paragraph
guard let paragraph = discussion.content
.compactMap({ block -> [RenderInlineContent]? in
switch block {
case .paragraph(let p): return p.inlineContent
default: return nil
}
})
.first(where: { children in
switch children[0] {
case .text(let string): return string.hasPrefix(withPrefix)
default: return false
}
}) else {
XCTFail("Could not find 'Exercise links to symbols' paragraph")
return nil
}
return paragraph
}
func testResolvingSymbolLinks() throws {
guard let paragraph = try findParagraph(withPrefix: "Exercise links to symbols", forSymbolPath: "/documentation/MyKit/MyProtocol") else {
XCTFail("Failed to fetch test content")
return
}
// Find the references to ``MyClass``
let references = paragraph.filter { inline -> Bool in
switch inline {
case .reference(let identifier, let active, _, _):
return identifier.identifier == "doc://org.swift.docc.example/documentation/MyKit/MyClass" && active
default: return false
}
}
// Verify that we found exactly 2 resolved references
XCTAssertEqual(references.count, 2)
}
func testExternalSymbolLink() throws {
guard let paragraph = try findParagraph(withPrefix: "Exercise unresolved symbols", forSymbolPath: "/documentation/MyKit/MyProtocol") else {
XCTFail("Failed to fetch test content")
return
}
// Find the references to ``MyClass``
let references = paragraph.filter { inline -> Bool in
switch inline {
case .codeVoice(code: let text):
return text == "MyUnresolvedSymbol"
default: return false
}
}
// Verify that we found exactly 1 unresolved references
XCTAssertEqual(references.count, 1)
}
func testOrderedAndUnorderedList() throws {
guard let discussion = try findDiscussion(forSymbolPath: "/documentation/MyKit/MyProtocol") else {
return
}
XCTAssert(discussion.content.contains(where: { block in
if case .orderedList(let l) = block,
l.startIndex == 1,
l.items.count == 3,
l.items[0].content.first == .paragraph(.init(inlineContent: [.text("One ordered")])),
l.items[1].content.first == .paragraph(.init(inlineContent: [.text("Two ordered")])),
l.items[2].content.first == .paragraph(.init(inlineContent: [.text("Three ordered")]))
{
return true
} else {
return false
}
}))
XCTAssert(discussion.content.contains(where: { block in
if case .unorderedList(let l) = block,
l.items.count == 3,
l.items[0].content.first == .paragraph(.init(inlineContent: [.text("One unordered")])),
l.items[1].content.first == .paragraph(.init(inlineContent: [.text("Two unordered")])),
l.items[2].content.first == .paragraph(.init(inlineContent: [.text("Three unordered")]))
{
return true
} else {
return false
}
}))
XCTAssert(discussion.content.contains(where: { block in
if case .orderedList(let l) = block,
l.startIndex == 2,
l.items.count == 3,
l.items[0].content.first == .paragraph(.init(inlineContent: [.text("Two ordered with custom start")])),
l.items[1].content.first == .paragraph(.init(inlineContent: [.text("Three ordered with custom start")])),
l.items[2].content.first == .paragraph(.init(inlineContent: [.text("Four ordered with custom start")]))
{
return true
} else {
return false
}
}))
}
func testAutomaticOverviewAndDiscussionHeadings() throws {
guard let myFunctionDiscussion = try findDiscussion(forSymbolPath: "/documentation/MyKit/MyClass/myFunction()", configureBundle: { url in
let sidecarURL = url.appendingPathComponent("/documentation/myFunction.md")
try """
# ``MyKit/MyClass/myFunction()``
This is the overview for myFunction.
""".write(to: sidecarURL, atomically: true, encoding: .utf8)
}) else {
return
}
XCTAssertEqual(
myFunctionDiscussion.content,
[
RenderBlockContent.heading(.init(level: 2, text: "Discussion", anchor: "discussion")),
RenderBlockContent.paragraph(.init(inlineContent: [.text("This is the overview for myFunction.")])),
]
)
guard let myClassDiscussion = try findDiscussion(forSymbolPath: "/documentation/MyKit/MyClass", configureBundle: { url in
let sidecarURL = url.appendingPathComponent("/documentation/myclass.md")
XCTAssert(FileManager.default.fileExists(atPath: sidecarURL.path), "Make sure that this overrides the existing file.")
try """
# ``MyKit/MyClass``
This is the abstract (because MyClass doesn't have an in-source abstract).
This is the overview for MyClass.
""".write(to: sidecarURL, atomically: true, encoding: .utf8)
}) else {
return
}
XCTAssertEqual(
myClassDiscussion.content,
[
RenderBlockContent.heading(.init(level: 2, text: "Overview", anchor: "overview")),
RenderBlockContent.paragraph(.init(inlineContent: [.text("This is the overview for MyClass.")])),
]
)
}
func testContentSectionSafeAnchor() {
// Verify an already safe title is not altered
do {
let section = ContentRenderSection(kind: .content, content: [], heading: "declaration")
XCTAssertEqual("declaration", section.content.mapFirst(where: { element -> String? in
switch element {
case .heading(let h): return h.anchor
default: return nil
}
}))
}
// Verify mixed cased title is lowercased
do {
let section = ContentRenderSection(kind: .content, content: [], heading: "DeclaratioN")
XCTAssertEqual("declaration", section.content.mapFirst(where: { element -> String? in
switch element {
case .heading(let h): return h.anchor
default: return nil
}
}))
}
do {
// Verify that "unsafe" title is safe-ified
let section = ContentRenderSection(kind: .content, content: [], heading: "My Declaration")
XCTAssertEqual("my-declaration", section.content.mapFirst(where: { element -> String? in
switch element {
case .heading(let h): return h.anchor
default: return nil
}
}))
}
}
func testArticleRoles() throws {
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
var problems = [Problem]()
// Verify article's role
do {
let source = """
# My Article
My introduction.
My exposé.
My conclusion.
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let article = try XCTUnwrap(
Article(from: document.root, source: nil, for: bundle, in: context, problems: &problems)
)
XCTAssertEqual(RenderMetadata.Role.article, DocumentationContentRenderer.roleForArticle(article, nodeKind: .article))
}
// Verify collections' role
do {
let source = """
# My Article
My introduction.
My exposé.
My conclusion.
## Topics
### Basics
- <doc:MyKit>
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
// Verify a collection group
let article1 = try XCTUnwrap(
Article(from: document.root, source: nil, for: bundle, in: context, problems: &problems)
)
XCTAssertEqual(RenderMetadata.Role.collectionGroup, DocumentationContentRenderer.roleForArticle(article1, nodeKind: .article))
let metadataSource = """
@Metadata {
@TechnologyRoot
}
"""
let metadataDocument = Document(
parsing: source + "\n" + metadataSource,
options: .parseBlockDirectives
)
// Verify a collection
let article2 = try XCTUnwrap(
Article(from: metadataDocument.root, source: nil, for: bundle, in: context, problems: &problems)
)
XCTAssertEqual(RenderMetadata.Role.collection, DocumentationContentRenderer.roleForArticle(article2, nodeKind: .article))
}
}
// Verifies that links to sections include their container's abstract rdar://72110558
func testSectionAbstracts() throws {
// Create an article including a link to a tutorial section
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], configureBundle: { url in
try """
# Article
Article abstract
## Topics
### Task Group
- <doc://org.swift.docc.example/tutorials/Test-Bundle/TestTutorial#Create-a-New-AR-Project-%F0%9F%92%BB>
""".write(to: url.appendingPathComponent("article.md"), atomically: true, encoding: .utf8)
})
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Test-Bundle/article", sourceLanguage: .swift)
let node = try context.entity(with: reference)
let article = try XCTUnwrap(node.semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let renderedNode = translator.visit(article) as! RenderNode
// Verify that the render reference to a section includes the container symbol's abstract
let renderReference = try XCTUnwrap(renderedNode.references["doc://org.swift.docc.example/tutorials/Test-Bundle/TestTutorial#Create-a-New-AR-Project-%F0%9F%92%BB"] as? TopicRenderReference)
XCTAssertEqual(renderReference.abstract.first?.plainText, "This is the tutorial abstract.")
}
func testEmptyTaskGroupsNotRendered() throws {
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
var problems = [Problem]()
let source = """
# My Article
## Topics
### No Topics
-
### Links
- <doc:article>
### Not even an empty item
### Bad Topics
- text <doc:DoesNotExist>
- <https://www.example.com>
- <doc:ThisArticleDoesNotResolve>
### Last
This task group has at least one good topic
- <https://www.example.com>
- <doc:article2>
-
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let article = try XCTUnwrap(
Article(from: document.root, source: nil, for: bundle, in: context, problems: &problems)
)
let reference = ResolvedTopicReference(bundleIdentifier: "org.swift.docc.example", path: "/documentation/Test-Bundle/taskgroups", fragment: nil, sourceLanguage: .swift)
context.documentationCache[reference] = try DocumentationNode(reference: reference, article: article)
let topicGraphNode = TopicGraph.Node(reference: reference, kind: .article, source: .file(url: URL(fileURLWithPath: "/path/to/article.md")), title: "My Article")
context.topicGraph.addNode(topicGraphNode)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
XCTAssertEqual(node.topicSections.count, 2)
let linksGroup = try XCTUnwrap(node.topicSections.first)
XCTAssertEqual(linksGroup.title, "Links")
XCTAssertEqual(linksGroup.identifiers, [
"doc://org.swift.docc.example/documentation/Test-Bundle/article",
])
let lastGroup = try XCTUnwrap(node.topicSections.last)
XCTAssertEqual(lastGroup.title, "Last")
XCTAssertEqual(lastGroup.identifiers, [
"doc://org.swift.docc.example/documentation/Test-Bundle/article2",
])
}
/// Tests the ordering of automatic groups for symbols
func testAutomaticTaskGroupsOrderingInSymbols() throws {
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], externalResolvers: [:], externalSymbolResolver: nil, configureBundle: { url in
try """
# ``SideKit/SideClass``
SideClass abstract
## Topics
### Basics
- <doc:documentation/MyKit/MyProtocol>
""".write(to: url.appendingPathComponent("sideclass.md"), atomically: true, encoding: .utf8)
})
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit/SideClass", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(try? context.entity(with: reference))
// Test manual task groups and automatic symbol groups ordering
do {
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// Verify that by default we render:
// 1. Manually curated task group
// 2. Automatic task groups for uncurated symbols
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
"Enumeration Cases",
"Initializers",
"Instance Properties",
"Instance Methods",
"Type Aliases",
])
}
// Test manual task groups, automatic symbol groups ordering, and
// automatic uncurated article groups.
do {
let symbol = try XCTUnwrap(node.semantic as? Symbol)
symbol.automaticTaskGroups = [
AutomaticTaskGroupSection(
title: "Articles",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .top
),
]
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// Verify that by default we render:
// 1. Manually curated task group
// 2. Automatic article groups
// 3. Automatic task groups for uncurated symbols
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
"Articles",
"Enumeration Cases",
"Initializers",
"Instance Properties",
"Instance Methods",
"Type Aliases",
])
}
// Test manual task groups, automatic symbol groups ordering,
// automatic uncurated article groups, and automatic api collections.
do {
let symbol = try XCTUnwrap(node.semantic as? Symbol)
symbol.automaticTaskGroups = [
AutomaticTaskGroupSection(
title: "Articles",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .top
),
AutomaticTaskGroupSection(
title: "Default Implementations",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .bottom
),
AutomaticTaskGroupSection(
title: "Another Task Group",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .bottom
),
]
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// Verify that by default we render:
// 1. Manually curated task group
// 2. Automatic article groups
// 3. Automatic task groups for uncurated symbols
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
"Articles",
"Enumeration Cases",
"Initializers",
"Instance Properties",
"Instance Methods",
"Type Aliases",
"Default Implementations",
"Another Task Group",
])
}
}
/// Tests the ordering of automatic groups for articles
func testAutomaticTaskGroupsOrderingInArticles() throws {
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], externalResolvers: [:], externalSymbolResolver: nil, configureBundle: { url in
try """
# Article
Article abstract
## Topics
### Basics
- <doc:documentation/MyKit/MyProtocol>
""".write(to: url.appendingPathComponent("article.md"), atomically: true, encoding: .utf8)
})
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Test-Bundle/article", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(try? context.entity(with: reference))
// Test the manual curation task groups
do {
let article = try XCTUnwrap(node.semantic as? Article)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
// Verify that by default we render manually curated task groups.
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
])
}
// Test manual task groups, and automatic uncurated article groups.
do {
let article = try XCTUnwrap(node.semantic as? Article)
article.automaticTaskGroups = [
AutomaticTaskGroupSection(
title: "Articles",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .top
),
]
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
// Verify that by default we render:
// 1. Manually curated task group
// 2. Automatic task groups for uncurated symbols
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
"Articles",
])
}
// Test manual task groups, automatic symbol groups ordering,
// automatic uncurated article groups, and automatic api collections.
do {
let article = try XCTUnwrap(node.semantic as? Article)
article.automaticTaskGroups = [
AutomaticTaskGroupSection(
title: "Articles",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .top
),
AutomaticTaskGroupSection(
title: "Default Implementations",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .bottom
),
AutomaticTaskGroupSection(
title: "Another Task Group",
references: [
ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/MyKit/MyProtocol",
sourceLanguage: .swift
),
],
renderPositionPreference: .bottom
),
]
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
// Verify that by default we render:
// 1. Manually curated task group
// 2. Automatic task groups for uncurated symbols
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Basics",
"Articles",
"Default Implementations",
"Another Task Group",
])
}
}
/// Tests the ordering of automatic groups in defining protocol
func testOrderingOfAutomaticGroupsInDefiningProtocol() throws {
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], externalResolvers: [:], externalSymbolResolver: nil, configureBundle: { url in
//
})
// Verify "Default Implementations" group on the implementing type
do {
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit/SideClass/Element", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(try? context.entity(with: reference))
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// Verify that implementing type gets a "Default implementations"
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Default Implementations",
])
XCTAssertEqual(renderNode.topicSections.map(\.identifiers), [
["doc://org.swift.docc.example/documentation/SideKit/SideClass/Element/Protocol-Implementations"],
])
}
// Verify automatically generated api collection
do {
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit/SideClass/Element/Protocol-Implementations", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(try? context.entity(with: reference))
let article = try XCTUnwrap(node.semantic as? Article)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
// Verify that implementing type gets a "Default implementations"
XCTAssertEqual(renderNode.topicSections.map(\.title), [
"Instance Methods",
])
XCTAssertEqual(renderNode.topicSections.map(\.identifiers), [
["doc://org.swift.docc.example/documentation/SideKit/SideClass/Element/inherited()"],
])
}
}
/// Verify that symbols with ellipsis operators don't get curated into an unnamed protocol implementation section.
func testAutomaticImplementationsWithExtraDots() throws {
let fancyProtocolSGFURL = Bundle.module.url(
forResource: "FancyProtocol.symbols", withExtension: "json", subdirectory: "Test Resources")!
// Create a test bundle copy with the symbol graph from above
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:]) { url in
try? FileManager.default.copyItem(at: fancyProtocolSGFURL, to: url.appendingPathComponent("FancyProtocol.symbols.json"))
}
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/FancyProtocol/SomeClass", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try context.entity(with: reference)
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let defaultImplementationSection = try XCTUnwrap(renderNode.topicSections.first(where: { $0.title == "Default Implementations" }))
XCTAssertEqual(defaultImplementationSection.identifiers, [
"doc://org.swift.docc.example/documentation/FancyProtocol/SomeClass/Comparable-Implementations",
"doc://org.swift.docc.example/documentation/FancyProtocol/SomeClass/Equatable-Implementations",
"doc://org.swift.docc.example/documentation/FancyProtocol/SomeClass/FancyProtocol-Implementations",
])
let implReferences = defaultImplementationSection.identifiers.compactMap({ renderNode.references[$0] as? TopicRenderReference })
XCTAssertEqual(implReferences.map({ $0.title }), [
"Comparable Implementations",
"Equatable Implementations",
"FancyProtocol Implementations",
])
}
func testAutomaticImplementationsWithExtraDotsFromExternalModule() throws {
let inheritedDefaultImplementationsFromExternalModuleSGF = Bundle.module.url(
forResource: "InheritedDefaultImplementationsFromExternalModule.symbols",
withExtension: "json",
subdirectory: "Test Resources"
)!
let testBundle = try Folder(
name: "unit-test.docc",
content: [
InfoPlist(displayName: "TestBundle", identifier: "com.test.example"),
CopyOfFile(original: inheritedDefaultImplementationsFromExternalModuleSGF),
]
).write(inside: createTemporaryDirectory())
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/SecondTarget/FancyProtocolConformer", in: testBundle),
[
"FancyProtocol Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/SecondTarget/OtherFancyProtocolConformer", in: testBundle),
[
"OtherFancyProtocol Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/SecondTarget/FooConformer", in: testBundle),
[
"Foo Implementations",
]
)
}
func testAutomaticImplementationsFromCurrentModuleWithMixOfDocCoverage() throws {
let inheritedDefaultImplementationsSGF = Bundle.module.url(
forResource: "InheritedDefaultImplementations.symbols",
withExtension: "json",
subdirectory: "Test Resources"
)!
let inheritedDefaultImplementationsAtSwiftSGF = Bundle.module.url(
forResource: "InheritedDefaultImplementations@Swift.symbols",
withExtension: "json",
subdirectory: "Test Resources"
)!
let testBundle = try Folder(
name: "unit-test.docc",
content: [
InfoPlist(displayName: "TestBundle", identifier: "com.test.example"),
CopyOfFile(original: inheritedDefaultImplementationsSGF),
CopyOfFile(original: inheritedDefaultImplementationsAtSwiftSGF),
]
).write(inside: createTemporaryDirectory())
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/Bar", in: testBundle),
[
"Foo Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/OtherStruct", in: testBundle),
[
"Comparable Implementations",
"Equatable Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/SomeStruct", in: testBundle),
[
"Comparable Implementations",
"Equatable Implementations",
"FancyProtocol Implementations",
"OtherFancyProtocol Implementations",
]
)
}
func testAutomaticImplementationsFromMultiPlatformSymbolGraphs() throws {
let inheritedDefaultImplementationsSGF = Bundle.module.url(
forResource: "InheritedDefaultImplementations.symbols",
withExtension: "json",
subdirectory: "Test Resources"
)!
let symbolGraphWithModifiedPlatform = try String(
contentsOf: inheritedDefaultImplementationsSGF
)
.replacingOccurrences(
of: """
"architecture": "x86_64",
""",
with: """
"architecture": "arm64",
"""
)
.replacingOccurrences(
of: """
"name": "macosx",
""",
with: """
"name": "ios",
"""
)
let testBundle = try Folder(
name: "unit-test.docc",
content: [
InfoPlist(displayName: "TestBundle", identifier: "com.test.example"),
Folder(
name: "x86_64-apple-macos",
content: [
CopyOfFile(original: inheritedDefaultImplementationsSGF),
]
),
Folder(
name: "arm64-apple-ios",
content: [
DataFile(
name: inheritedDefaultImplementationsSGF.lastPathComponent,
data: Data(symbolGraphWithModifiedPlatform.utf8)
),
]
),
]
).write(inside: createTemporaryDirectory())
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/Bar", in: testBundle),
[
"Foo Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/OtherStruct", in: testBundle),
[
"Comparable Implementations",
"Equatable Implementations",
]
)
try assertDefaultImplementationCollectionTitles(
in: try loadRenderNode(at: "/documentation/FirstTarget/SomeStruct", in: testBundle),
[
"Comparable Implementations",
"Equatable Implementations",
"FancyProtocol Implementations",
"OtherFancyProtocol Implementations",
]
)
}
func assertDefaultImplementationCollectionTitles(
in renderNode: RenderNode,
_ expectedTitles: [String],
file: StaticString = #file,
line: UInt = #line
) throws {
let defaultImplementationSection = try XCTUnwrap(
renderNode.topicSections.first(where: { $0.title == "Default Implementations" }),
"Expected to find default implementations topic section.",
file: file,
line: line
)
let references = defaultImplementationSection.identifiers.compactMap { identifier in
renderNode.references[identifier] as? TopicRenderReference
}
XCTAssertEqual(references.map(\.title), expectedTitles, file: file, line: line)
}
func loadRenderNode(at path: String, in bundleURL: URL) throws -> RenderNode {
let (_, bundle, context) = try loadBundle(from: bundleURL)
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: path, sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try context.entity(with: reference)
let symbol = try XCTUnwrap(node.semantic as? Symbol)
return try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
}
func testAutomaticTaskGroupTopicsAreSorted() throws {
let (bundle, context) = try testBundleAndContext(named: "DefaultImplementations")
let structReference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/DefaultImplementations/Foo", sourceLanguage: .swift)
let structNode = try context.entity(with: structReference)
let symbol = try XCTUnwrap(structNode.semantic as? Symbol)
// Verify that the ordering of default implementations is deterministic
for _ in 0..<100 {
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: structReference, source: nil)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let section = renderNode.topicSections.first(where: { $0.title == "Default Implementations" })
XCTAssertEqual(section?.identifiers, [
"doc://org.swift.docc.example/documentation/DefaultImplementations/Foo/A-Implementations",
"doc://org.swift.docc.example/documentation/DefaultImplementations/Foo/B-Implementations",
"doc://org.swift.docc.example/documentation/DefaultImplementations/Foo/C-Implementations",
])
}
}
// Verifies we don't render links to non linkable nodes.
func testNonLinkableNodes() throws {
// Create a bundle with variety absolute and relative links and symbol links to a non linkable node.
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], externalResolvers: [:], externalSymbolResolver: nil, configureBundle: { url in
try """
# ``SideKit/SideClass``
Abstract.
## Discussion
This is a link to <doc:/documentation/SideKit/SideClass/Element/Protocol-Implementations>.
## Topics
### Basics
- <doc:documentation/SideKit/SideClass/Element/Protocol-Implementations>
- ``SideKit/SideClass/Element/Protocol-Implementations``
- ``Element/Protocol-Implementations``
""".write(to: url.appendingPathComponent("sideclass.md"), atomically: true, encoding: .utf8)
})
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit/SideClass", sourceLanguage: .swift)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let node = try XCTUnwrap(try? context.entity(with: reference))
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let discussion = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0.kind == .content }) as? ContentRenderSection)
let paragraph = try XCTUnwrap(discussion.content.last)
guard case let RenderBlockContent.paragraph(p) = paragraph else {
XCTFail("Unexpected discussion content.")
return
}
XCTAssertEqual(p.inlineContent, [
.text("This is a link to "),
.text("doc:/documentation/SideKit/SideClass/Element/Protocol-Implementations"),
.text("."),
])
}
// Verifies we support rendering links in abstracts.
func testLinkInAbstract() throws {
do {
// First verify that `SideKit` page does not contain render reference to `SideKit/SideClass/Element`.
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit", sourceLanguage: .swift)
let node = try context.entity(with: reference)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// No render reference to `Element`
XCTAssertFalse(renderNode.references.keys.contains("doc://\(bundle.identifier)/documentation/SideKit/SideClass/Element"))
}
do {
// Create a bundle with a link in abstract, then verify the render reference is present in `SideKit` render node references.
let (_, bundle, context) = try testBundleAndContext(copying: "TestBundle", excludingPaths: [], codeListings: [:], externalResolvers: [:], externalSymbolResolver: nil, configureBundle: { url in
try """
# ``SideKit/SideClass``
This is a link to <doc:/documentation/SideKit/SideClass/Element>.
""".write(to: url.appendingPathComponent("sideclass.md"), atomically: true, encoding: .utf8)
})
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/SideKit", sourceLanguage: .swift)
let node = try context.entity(with: reference)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let symbol = try XCTUnwrap(node.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
// There is a render reference to `Element`
XCTAssertTrue(renderNode.references.keys.contains("doc://\(bundle.identifier)/documentation/SideKit/SideClass/Element"))
}
}
func testSnippetToCodeListing() throws {
let (bundle, context) = try testBundleAndContext(named: "Snippets")
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Snippets/Snippets", sourceLanguage: .swift)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0.kind == .content }) as? ContentRenderSection)
if case let .paragraph(p) = discussion.content.dropFirst(2).first {
XCTAssertEqual(p.inlineContent, [.text("Does a foo.")])
} else {
XCTFail("Unexpected content where snippet explanation should be.")
}
if case let .codeListing(l) = discussion.content.dropFirst(3).first {
XCTAssertEqual(l.syntax, "swift")
XCTAssertEqual(l.code.joined(separator: "\n"), """
func foo() {}
do {
middle()
}
func bar() {}
""")
} else {
XCTFail("Missing snippet code block")
}
}
func testSnippetSliceToCodeListing() throws {
let (bundle, context) = try testBundleAndContext(named: "Snippets")
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Snippets/Snippets", sourceLanguage: .swift)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0.kind == .content }) as? ContentRenderSection)
let lastCodeListingIndex = try XCTUnwrap(discussion.content.indices.last {
guard case .codeListing = discussion.content[$0] else {
return false
}
return true
})
guard case let .codeListing(l) = discussion.content[lastCodeListingIndex] else {
XCTFail("Missing snippet slice code block")
return
}
XCTAssertEqual(l.syntax, "swift")
XCTAssertEqual(l.code, ["func foo() {}"])
}
func testNestedSnippetSliceToCodeListing() throws {
let (bundle, context) = try testBundleAndContext(named: "Snippets")
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Snippets/Snippets", sourceLanguage: .swift)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0.kind == .content }) as? ContentRenderSection)
let lastTabNavigator = try XCTUnwrap(discussion.content.indices.last {
guard case .tabNavigator = discussion.content[$0] else {
return false
}
return true
})
guard case let .tabNavigator(t) = discussion.content[lastTabNavigator] else {
XCTFail("Missing snippet slice code block")
return
}
let codeListing = t.tabs.last?.content.last
guard case let .codeListing(l) = codeListing else {
XCTFail("Missing nested snippet inside TabNavigator")
return
}
XCTAssertEqual(l.syntax, "swift")
XCTAssertEqual(l.code, ["middle()"])
}
func testSnippetSliceTrimsIndentation() throws {
let (bundle, context) = try testBundleAndContext(named: "Snippets")
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: "/documentation/Snippets/SliceIndentation", sourceLanguage: .swift)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0.kind == .content }) as? ContentRenderSection)
let lastCodeListingIndex = try XCTUnwrap(discussion.content.indices.last {
guard case .codeListing = discussion.content[$0] else {
return false
}
return true
})
guard case let .codeListing(l) = discussion.content[lastCodeListingIndex] else {
XCTFail("Missing snippet slice code block")
return
}
XCTAssertEqual(l.syntax, "swift")
XCTAssertEqual(l.code, ["middle()"])
}
func testRowAndColumn() throws {
let (bundle, context) = try testBundleAndContext(named: "BookLikeContent")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/BestBook/MyArticle",
sourceLanguage: .swift
)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(
renderNode.primaryContentSections.first(
where: { $0.kind == .content }
) as? ContentRenderSection
)
guard case let .row(row) = discussion.content.dropFirst().first else {
XCTFail("Expected to find row as first child.")
return
}
XCTAssertEqual(row.numberOfColumns, 8)
XCTAssertEqual(row.columns.first?.size, 3)
XCTAssertEqual(row.columns.first?.content.count, 1)
XCTAssertEqual(row.columns.last?.size, 5)
XCTAssertEqual(row.columns.last?.content.count, 3)
}
func testSmall() throws {
let (bundle, context) = try testBundleAndContext(named: "BookLikeContent")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/BestBook/MyArticle",
sourceLanguage: .swift
)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(
renderNode.primaryContentSections.first(
where: { $0.kind == .content }
) as? ContentRenderSection
)
guard case let .small(small) = discussion.content.last else {
XCTFail("Expected to find small as last child.")
return
}
XCTAssertEqual(
small.inlineContent,
[.text("Copyright (c) 2022 Apple Inc and the Swift Project authors. All Rights Reserved.")]
)
}
func testTabNavigator() throws {
let (bundle, context) = try testBundleAndContext(named: "BookLikeContent")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/BestBook/TabNavigatorArticle",
sourceLanguage: .swift
)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let discussion = try XCTUnwrap(
renderNode.primaryContentSections.first(
where: { $0.kind == .content }
) as? ContentRenderSection
)
guard case let .tabNavigator(tabNavigator) = discussion.content.dropFirst().first else {
XCTFail("Expected to find tab as first child.")
return
}
guard tabNavigator.tabs.count == 3 else {
XCTFail("Expected to find a tab navigator with '3' tabs")
return
}
XCTAssertEqual(tabNavigator.tabs[0].title, "Powers")
XCTAssertEqual(tabNavigator.tabs[1].title, "Exercise routines")
XCTAssertEqual(tabNavigator.tabs[2].title, "Hats")
XCTAssertEqual(tabNavigator.tabs[0].content.count, 1)
XCTAssertEqual(tabNavigator.tabs[1].content.count, 2)
XCTAssertEqual(tabNavigator.tabs[2].content.count, 1)
}
func testRenderNodeMetadata() throws {
let (bundle, context) = try testBundleAndContext(named: "BookLikeContent")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/BestBook/MyArticle",
sourceLanguage: .swift
)
let article = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitArticle(article) as? RenderNode)
let encodedArticle = try JSONEncoder().encode(renderNode)
let roundTrippedArticle = try JSONDecoder().decode(RenderNode.self, from: encodedArticle)
XCTAssertEqual(roundTrippedArticle.icon?.identifier, "plus.svg")
XCTAssertEqual(renderNode.metadata.customMetadata.count, 1)
XCTAssertEqual(
roundTrippedArticle.references["figure1.png"] as? ImageReference,
ImageReference(
identifier: RenderReferenceIdentifier("figure1.png"),
imageAsset: DataAsset(
variants: [
DataTraitCollection(userInterfaceStyle: .light, displayScale: .standard)
: URL(string: "/images/figure1.png")!,
DataTraitCollection(userInterfaceStyle: .dark, displayScale: .standard)
: URL(string: "/images/figure1~dark.png")!,
],
metadata: [
URL(string: "/images/figure1.png")! : DataAsset.Metadata(),
URL(string: "/images/figure1~dark.png")! : DataAsset.Metadata(),
]
)
)
)
XCTAssertEqual(
roundTrippedArticle.references["plus.svg"] as? ImageReference,
ImageReference(
identifier: RenderReferenceIdentifier("plus.svg"),
imageAsset: DataAsset(
variants: [
DataTraitCollection(userInterfaceStyle: .light, displayScale: .standard)
: URL(string: "/images/plus.svg")!,
],
metadata: [
URL(string: "/images/plus.svg")! : DataAsset.Metadata(svgID: "plus-id"),
]
)
)
)
XCTAssertEqual(
Set(roundTrippedArticle.metadata.images),
[
TopicImage(type: .icon, identifier: RenderReferenceIdentifier("plus.svg")),
TopicImage(type: .card, identifier: RenderReferenceIdentifier("figure1.png"))
]
)
XCTAssertEqual(roundTrippedArticle.metadata.customMetadata.count, 1)
XCTAssertEqual(roundTrippedArticle.metadata.customMetadata.keys.count, 1)
XCTAssertEqual(roundTrippedArticle.metadata.customMetadata.keys.first, "country")
XCTAssertEqual(roundTrippedArticle.metadata.customMetadata.values.count, 1)
XCTAssertEqual(roundTrippedArticle.metadata.customMetadata.values.first, "Belgium")
XCTAssertEqual(
roundTrippedArticle.metadata.color?.standardColorIdentifier,
"yellow"
)
XCTAssertEqual(roundTrippedArticle.metadata.roleHeading, "Book-Like Content")
XCTAssertEqual(roundTrippedArticle.metadata.role, "article")
}
func testPageColorMetadataInSymbolExtension() throws {
let (bundle, context) = try testBundleAndContext(named: "MixedManualAutomaticCuration")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/TestBed",
sourceLanguage: .swift
)
let symbol = try XCTUnwrap(context.entity(with: reference).semantic as? Symbol)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let encodedSymbol = try JSONEncoder().encode(renderNode)
let roundTrippedSymbol = try JSONDecoder().decode(RenderNode.self, from: encodedSymbol)
XCTAssertEqual(roundTrippedSymbol.metadata.color?.standardColorIdentifier, "purple")
}
func testTitleHeadingMetadataInSymbolExtension() throws {
let (bundle, context) = try testBundleAndContext(named: "MixedManualAutomaticCuration")
let reference = ResolvedTopicReference(
bundleIdentifier: bundle.identifier,
path: "/documentation/TestBed",
sourceLanguage: .swift
)
let symbol = try XCTUnwrap(context.entity(with: reference).semantic as? Symbol)
var translator = RenderNodeTranslator(
context: context,
bundle: bundle,
identifier: reference,
source: nil
)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let encodedSymbol = try JSONEncoder().encode(renderNode)
let roundTrippedSymbol = try JSONDecoder().decode(RenderNode.self, from: encodedSymbol)
XCTAssertEqual(roundTrippedSymbol.metadata.roleHeading, "TestBed Notes")
XCTAssertEqual(roundTrippedSymbol.metadata.role, "collection")
}
func testExpectedRoleHeadingIsAssigned() throws {
let exampleDocumentation = Folder(
name: "unit-test.docc",
content: [
TextFile(name: "APICollection.md", utf8Content: """
# API Collection
My API Collection Abstract.
## Topics
- ``Symbol``
- <doc:article2>
- <doc:article3>
"""),
TextFile(name: "Collection.md", utf8Content: """
# Collection
An abstract with a symbol link: ``MyKit/MyProtocol``
## Overview
An overview with a symbol link: ``MyKit/MyProtocol``
## Topics
A topic group abstract with a symbol link: ``MyKit/MyProtocol``
- <doc:article4>
- <doc:article5>
"""),
TextFile(name: "Article.md", utf8Content: """
# Article
My Article Abstract.
## Overview
An overview.
"""),
TextFile(name: "CustomRole.md", utf8Content: """
# Article 4
@Metadata {
@TitleHeading("Custom Role")
}
My Article Abstract.
## Overview
An overview.
"""),
TextFile(name: "SampleCode.md", utf8Content: """
# Sample Code
@Metadata {
@PageKind(sampleCode)
}
## Topics
- <doc:article>
"""),
JSONFile(
name: "unit-test.symbols.json",
content: makeSymbolGraph(
moduleName: "unit-test",
symbols: [SymbolGraph.Symbol(
identifier: .init(precise: "symbol-id", interfaceLanguage: "swift"),
names: .init(title: "Symbol", navigator: nil, subHeading: nil, prose: nil),
pathComponents: ["Symbol"],
docComment: nil,
accessLevel: .public,
kind: .init(parsedIdentifier: .class, displayName: "Kind Display Name"),
mixins: [:]
)]
)
),
]
)
let tempURL = try createTempFolder(content: [exampleDocumentation])
let (_, bundle, context) = try loadBundle(from: tempURL)
func renderNodeArticleFromReferencePath(
referencePath: String
) throws -> RenderNode {
let reference = ResolvedTopicReference(bundleIdentifier: bundle.identifier, path: referencePath, sourceLanguage: .swift)
let symbol = try XCTUnwrap(context.entity(with: reference).semantic as? Article)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
return try XCTUnwrap(translator.visitArticle(symbol) as? RenderNode)
}
// Assert that articles that curates any symbol gets 'API Collection' assigned as the eyebrow title.
var renderNode = try renderNodeArticleFromReferencePath(referencePath: "/documentation/unit-test/APICollection")
XCTAssertEqual(renderNode.metadata.roleHeading, "API Collection")
// Assert that articles that curates only other articles don't get any value assigned as the eyebrow title.
renderNode = try renderNodeArticleFromReferencePath(referencePath: "/documentation/unit-test/Collection")
XCTAssertEqual(renderNode.metadata.roleHeading, nil)
// Assert that articles that don't curate anything else get 'Article' assigned as the eyebrow title.
renderNode = try renderNodeArticleFromReferencePath(referencePath: "/documentation/unit-test/Article")
XCTAssertEqual(renderNode.metadata.roleHeading, "Article")
// Assert that articles that have a custom title heading the eyebrow title assigned properly.
renderNode = try renderNodeArticleFromReferencePath(referencePath: "/documentation/unit-test/CustomRole")
XCTAssertEqual(renderNode.metadata.roleHeading, "Custom Role")
// Assert that articles that have a custom page kind the eyebrow title assigned properly.
renderNode = try renderNodeArticleFromReferencePath(referencePath: "/documentation/unit-test/SampleCode")
XCTAssertEqual(renderNode.metadata.roleHeading, "Sample Code")
}
func testEncodesOverloadsInRenderNode() throws {
enableFeatureFlag(\.isExperimentalOverloadedSymbolPresentationEnabled)
let (bundle, context) = try testBundleAndContext(named: "OverloadedSymbols")
let overloadPreciseIdentifiers = ["s:8ShapeKit14OverloadedEnumO19firstTestMemberNameySdSiF",
"s:8ShapeKit14OverloadedEnumO19firstTestMemberNameySdSfF",
"s:8ShapeKit14OverloadedEnumO19firstTestMemberNameySdSSF",
"s:8ShapeKit14OverloadedEnumO19firstTestMemberNameyS2dF",
"s:8ShapeKit14OverloadedEnumO19firstTestMemberNameySdSaySdGF"]
let overloadReferences = try overloadPreciseIdentifiers.map { try XCTUnwrap(context.documentationCache.reference(symbolID: $0)) }
for (index, reference) in overloadReferences.indexed() {
let documentationNode = try context.entity(with: reference)
var translator = RenderNodeTranslator(context: context, bundle: bundle, identifier: reference, source: nil)
let symbol = try XCTUnwrap(documentationNode.semantic as? Symbol)
let renderNode = try XCTUnwrap(translator.visitSymbol(symbol) as? RenderNode)
let declarationSection = try XCTUnwrap(renderNode.primaryContentSections.first(where: { $0 is DeclarationsRenderSection }) as? DeclarationsRenderSection)
// Each render node should contain declarations for all of its sibling overloads.
let otherDeclarations = try XCTUnwrap(declarationSection.declarations.first?.otherDeclarations)
XCTAssertEqual(otherDeclarations.declarations.count, overloadPreciseIdentifiers.count - 1)
for declaration in otherDeclarations.declarations {
XCTAssertNotNil(declaration.tokens)
}
for (otherIndex, otherReference) in overloadReferences.indexed() where otherIndex != index {
XCTAssertTrue(otherDeclarations.declarations.contains(where: { $0.identifier == otherReference.absoluteString }))
XCTAssert(renderNode.references.keys.contains(otherReference.absoluteString))
}
}
}
}
|