public void Test_If_Paths_Are_Not_Identical_Can_Calculate_Relative_Path() { var from = new Resource(@"\spec\"); var to = new Resource(@"\spec\blah"); Assert.Equal<string>(@"blah", from.GetRelativePath(to)); }
public void Test_If_Paths_Are_Not_Identical_And_End_In_Slashes_Can_Calculate_Relative_Path() { var from = new Resource(@"\a\b\c\"); var to = new Resource(@"\a\b\x\"); Assert.Equal<string>(@"..\x\", from.GetRelativePath(to)); }
public void Test_If_Paths_Point_To_File_And_Are_Identical_Can_Calculate_Relative_Path() { var from = new Resource(@"\spec\x.html"); var to = new Resource(@"\spec\x.html"); Assert.Equal<string>("x.html", from.GetRelativePath(to)); }
private void AddFooterToDocument(Element rootElement, Resource resource, long timeTaken) { Element body = rootElement.GetFirstChildElement("body"); if (body != null) { Element footer = new Element("div"); footer.AddStyleClass("footer"); footer.AppendText("Results generated by "); Element link = new Element("a"); link.AddAttribute("href", CONCORDION_WEBSITE_URL); footer.AppendChild(link); Element img = new Element("img"); img.AddAttribute("src", resource.GetRelativePath(TARGET_LOGO_RESOURCE)); img.AddAttribute("alt", "Concordion"); img.AddAttribute("border", "0"); link.AppendChild(img); Element dateDiv = new Element("div"); dateDiv.AddStyleClass("testTime"); dateDiv.AppendText("in " + (timeTaken + 1) + " ms "); dateDiv.AppendText(DateTime.Now.ToString()); footer.AppendChild(dateDiv); body.AppendChild(footer); } }
public void Test_If_Path_To_Image_And_Path_To_Html_File_Can_Calculate_Relative_Path() { var from = new Resource(@"\spec\concordion\breadcrumbs\Breadcrumbs.html"); var to = new Resource(@"\image\concordion-logo.png"); Assert.Equal<string>(@"..\..\..\image\concordion-logo.png", from.GetRelativePath(to)); }
public void Test_If_Paths_Share_Common_Root_And_End_In_Text_File_Can_Calculate_Relative_Path() { var from = new Resource(@"\a\b\c\file.txt"); var to = new Resource(@"\a\x\x\file.txt"); Assert.Equal<string>(@"..\..\x\x\file.txt", from.GetRelativePath(to)); }
private Element CreateBreadcrumbElement(Resource documentResource, Resource indexPageResource) { XDocument document; using (var inputStream = this.Source.CreateReader(indexPageResource)) { document = XDocument.Load(inputStream); } var breadcrumbWording = this.GetBreadcrumbWording(new Element(document.Root), indexPageResource); var a = new Element("a"); a.AddAttribute("href", documentResource.GetRelativePath(indexPageResource)); a.AppendText(breadcrumbWording); return a; }
private void AddFooterToDocument(Element rootElement, Resource resource, long timeTaken) { Element body = rootElement.GetFirstChildElement("body"); if (body != null) { Element footer = new Element("div"); footer.AddStyleClass("footer"); footer.AppendText("Powered by "); Element link = new Element("a"); link.AddAttribute("href", CONCORDION_WEBSITE_URL); footer.AppendChild(link); Element img = new Element("img"); img.AddAttribute("src", resource.GetRelativePath(TARGET_LOGO_RESOURCE)); img.AddAttribute("alt", "Concordion"); img.AddAttribute("border", "0"); link.AppendChild(img); body.AppendChild(footer); } }
public void Test_If_Paths_Are_Weird_And_End_In_Slashes_Can_Calculate_Relative_Path() { var from = new Resource(@"\x\b\c\"); var to = new Resource(@"\a\b\x\"); Assert.AreEqual(@"..\..\..\a\b\x\", from.GetRelativePath(to)); }