public void GetInvalidFileInfo() { UrlResource urlResource = new UrlResource("http://www.springframework.net/"); FileInfo file; Assert.Throws <FileNotFoundException>(() => file = urlResource.File); }
public void GetInvalidFileInfoWithOddPort() { UrlResource urlResource = new UrlResource("http://www.springframework.net:76/"); FileInfo temp; Assert.Throws <FileNotFoundException>(() => temp = urlResource.File); }
public void RelativeResourceFromSubfolder() { UrlResource res = new UrlResource("http://www.springframework.net/samples/artfair/download.html"); IResource rel0 = res.CreateRelative("/index.html"); Assert.IsTrue(rel0 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/index.html]", rel0.Description); IResource rel1 = res.CreateRelative("index.html"); Assert.IsTrue(rel1 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/artfair/index.html]", rel1.Description); IResource rel2 = res.CreateRelative("demo/index.html"); Assert.IsTrue(rel2 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/artfair/demo/index.html]", rel2.Description); IResource rel3 = res.CreateRelative("./demo/index.html"); Assert.IsTrue(rel3 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/artfair/demo/index.html]", rel3.Description); IResource rel4 = res.CreateRelative("../calculator/index.html"); Assert.IsTrue(rel4 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/calculator/index.html]", rel4.Description); IResource rel5 = res.CreateRelative("../../index.html"); Assert.IsTrue(rel5 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/index.html]", rel5.Description); }
public void GetInvalidFileInfoWithOddPort() { UrlResource urlResource = new UrlResource("http://www.springframework.net:76/"); FileInfo file = urlResource.File; file.GetType(); }
public void GetValidInputStreamForFileProtocol() { string fileName = Path.GetTempFileName(); FileStream fs = File.Create(fileName); fs.Close(); using (Stream inputStream = new UrlResource(FILE_PROTOCOL_PREFIX + fileName).InputStream) { Assert.IsTrue(inputStream.CanRead); } }
public void RelativeResourceFromRoot() { UrlResource res = new UrlResource("http://www.springframework.net/documentation.html"); IResource rel0 = res.CreateRelative("/index.html"); Assert.IsTrue(rel0 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/index.html]", rel0.Description); IResource rel1 = res.CreateRelative("index.html"); Assert.IsTrue(rel1 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/index.html]", rel1.Description); IResource rel2 = res.CreateRelative("samples/artfair/index.html"); Assert.IsTrue(rel2 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/artfair/index.html]", rel2.Description); IResource rel3 = res.CreateRelative("./samples/artfair/index.html"); Assert.IsTrue(rel3 is UrlResource); Assert.AreEqual("URL [http://www.springframework.net/samples/artfair/index.html]", rel3.Description); }
public void RelativeResourceTooManyBackLevels() { UrlResource res = new UrlResource("http://www.springframework.net/samples/artfair/download.html"); res.CreateRelative("../../../index.html"); }
public void GetDescription() { UrlResource urlResource = new UrlResource(FILE_PROTOCOL_PREFIX + "C:/temp"); Assert.AreEqual("URL [file:///C:/temp]", urlResource.Description); }
public void GetInvalidFileInfo() { UrlResource urlResource = new UrlResource("http://www.springframework.net/"); FileInfo file; Assert.Throws<FileNotFoundException>(() => file = urlResource.File); }
public void ExistsValidHttp() { UrlResource urlResource = new UrlResource("http://www.springframework.net/"); Assert.IsTrue(urlResource.Exists); }
public void GetValidFileInfo() { UrlResource urlResource = new UrlResource(FILE_PROTOCOL_PREFIX + "C:/temp"); Assert.AreEqual("C:\\temp", urlResource.File.FullName); }
public void CreateUrlResourceWithGivenPath() { UrlResource urlResource = new UrlResource(FILE_PROTOCOL_PREFIX + "C:/temp"); Assert.AreEqual("C:/temp", urlResource.Uri.AbsolutePath); }
public void RelativeResourceTooManyBackLevels() { UrlResource res = new UrlResource("http://www.springframework.net/samples/artfair/download.html"); Assert.Throws <UriFormatException>(() => res.CreateRelative("../../../index.html")); }
public void GetInvalidFileInfoWithOddPort() { UrlResource urlResource = new UrlResource("http://www.springframework.net:76/"); FileInfo temp; Assert.Throws<FileNotFoundException>(() => temp = urlResource.File); }
public void RelativeResourceTooManyBackLevels() { UrlResource res = new UrlResource("http://www.springframework.net/samples/artfair/download.html"); Assert.Throws<UriFormatException>(() => res.CreateRelative("../../../index.html")); }