You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
912 B
33 lines
912 B
using System.Linq;
|
|
using System.Net;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
{
|
|
[TestFixture]
|
|
public class IndexHtmlFixture : IntegrationTest
|
|
{
|
|
[Test]
|
|
public void should_get_index_html()
|
|
{
|
|
var text = new WebClient().DownloadString(RootUrl);
|
|
text.Should().NotBeNullOrWhiteSpace();
|
|
}
|
|
|
|
[Test]
|
|
public void index_should_not_be_cached()
|
|
{
|
|
var client = new WebClient();
|
|
_ = client.DownloadString(RootUrl);
|
|
|
|
var headers = client.ResponseHeaders;
|
|
|
|
headers.Get("Cache-Control").Split(',').Select(x => x.Trim())
|
|
.Should().BeEquivalentTo("no-store, no-cache".Split(',').Select(x => x.Trim()));
|
|
headers.Get("Pragma").Should().Be("no-cache");
|
|
headers.Get("Expires").Should().Be("-1");
|
|
}
|
|
}
|
|
}
|