112 lines
3.8 KiB
C#
112 lines
3.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FluentAssertions;
|
|
using MontoyaTech.Rest.Net;
|
|
using Xunit;
|
|
|
|
namespace Rest.Net.Tests
|
|
{
|
|
public class ServeFileTests
|
|
{
|
|
public string BaseDirectory = null;
|
|
|
|
public string TestDirectory = null;
|
|
|
|
public string TestFile = null;
|
|
|
|
public ServeFileTests()
|
|
{
|
|
this.BaseDirectory = Path.Combine(Environment.CurrentDirectory, "test");
|
|
|
|
if (!Directory.Exists(this.BaseDirectory))
|
|
Directory.CreateDirectory(this.BaseDirectory);
|
|
|
|
this.TestDirectory = Path.Combine(this.BaseDirectory, "test2");
|
|
|
|
if (!Directory.Exists(this.TestDirectory))
|
|
Directory.CreateDirectory(this.TestDirectory);
|
|
|
|
this.TestFile = Path.Combine(this.BaseDirectory, "test.html");
|
|
|
|
if (!File.Exists(this.TestFile))
|
|
File.WriteAllText(this.TestFile, "hello world");
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeMultiple_File_ShouldWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveMultiPagePath(this.BaseDirectory, "/test.html", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeFalse();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestFile);
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeMultiple_Directory_ShouldWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveMultiPagePath(this.BaseDirectory, "/test2", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeTrue();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestDirectory);
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeMultiple_NavigatingUp_Should_NotWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveMultiPagePath(this.BaseDirectory, "../test.html", null, out string resolvedPath, out bool isDirectory).Should().BeFalse();
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeMultiple_Correct_NavigatingUp_Should_Work()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveMultiPagePath(this.BaseDirectory, "a/b/../../test.html", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeFalse();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestFile);
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeMultiple_NavigatingUp_Multiple_Should_NotWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveMultiPagePath(this.BaseDirectory, "test/../../test.html", null, out string resolvedPath, out bool isDirectory).Should().BeFalse();
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeSingle_File_ShouldWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveSinglePagePath(this.BaseDirectory, "/test.html", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeFalse();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestFile);
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeSingle_Directory_ShouldWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveSinglePagePath(this.BaseDirectory, "/test2", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeTrue();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestDirectory);
|
|
}
|
|
|
|
[Fact]
|
|
public void ServeSingle_File_Route_ShouldWork()
|
|
{
|
|
HttpListenerResponseExtensions.ResolveSinglePagePath(this.BaseDirectory, "/a/b/test.html", null, out string resolvedPath, out bool isDirectory).Should().BeTrue();
|
|
|
|
isDirectory.Should().BeFalse();
|
|
|
|
resolvedPath.Should().BeEquivalentTo(this.TestFile);
|
|
}
|
|
}
|
|
}
|