mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 14:23:34 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
107 lines
2.8 KiB
C#
107 lines
2.8 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System;
|
|
using System.IO;
|
|
using NFluent;
|
|
using WireMock.Handlers;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.Handlers;
|
|
|
|
public class LocalFileSystemHandlerTests
|
|
{
|
|
private readonly LocalFileSystemHandler _sut = new();
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_GetMappingFolder()
|
|
{
|
|
// Act
|
|
string result = _sut.GetMappingFolder();
|
|
|
|
// Assert
|
|
Check.That(result).EndsWith(Path.Combine("__admin", "mappings"));
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_CreateFolder_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.CreateFolder(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_WriteMappingFile_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.WriteMappingFile(null, null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_ReadResponseBodyAsFile_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.ReadResponseBodyAsFile(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_FileExists_ReturnsFalse()
|
|
{
|
|
// Act
|
|
var result = _sut.FileExists("x.x");
|
|
|
|
// Assert
|
|
Check.That(result).IsFalse();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_FileExists_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.FileExists(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_ReadFile_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.ReadFile(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_ReadFileAsString_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.ReadFileAsString(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_WriteFile_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.WriteFile(null, null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_DeleteFile_ThrowsArgumentNullException()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.DeleteFile(null)).Throws<ArgumentNullException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_GetUnmatchedRequestsFolder()
|
|
{
|
|
// Act
|
|
string result = _sut.GetUnmatchedRequestsFolder();
|
|
|
|
// Assert
|
|
Check.That(result).EndsWith(Path.Combine("requests", "unmatched"));
|
|
}
|
|
|
|
[Fact]
|
|
public void LocalFileSystemHandler_WriteUnmatchedRequest()
|
|
{
|
|
// Act
|
|
Check.ThatCode(() => _sut.WriteUnmatchedRequest(null, null)).Throws<ArgumentNullException>();
|
|
}
|
|
} |