mirror of https://github.com/abpframework/abp
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.
79 lines
2.3 KiB
79 lines
2.3 KiB
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Shouldly;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.Testing;
|
|
using Xunit;
|
|
|
|
namespace Volo.Abp.VirtualFileSystem
|
|
{
|
|
public class VirtualFileProvider_Tests : AbpIntegratedTest<VirtualFileProvider_Tests.TestModule>
|
|
{
|
|
private readonly IVirtualFileProvider _virtualFileProvider;
|
|
|
|
public VirtualFileProvider_Tests()
|
|
{
|
|
_virtualFileProvider = ServiceProvider.GetRequiredService<IVirtualFileProvider>();
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Define_And_Get_Embedded_Resources()
|
|
{
|
|
//Act
|
|
var resource = _virtualFileProvider.GetFileInfo("/js/jquery-3-1-1-min.js");
|
|
|
|
//Assert
|
|
resource.ShouldNotBeNull();
|
|
resource.Exists.ShouldBeTrue();
|
|
|
|
using (var stream = resource.CreateReadStream())
|
|
{
|
|
Encoding.UTF8.GetString(stream.GetAllBytes()).ShouldBe("//jquery-3-1-1-min.js-contents");
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Define_And_Get_Embedded_Directory_Contents()
|
|
{
|
|
//Act
|
|
var contents = _virtualFileProvider.GetDirectoryContents("/js");
|
|
|
|
//Assert
|
|
contents.Exists.ShouldNotBeNull();
|
|
|
|
var contentList = contents.ToList();
|
|
contentList.ShouldContain(x => x.Name == "jquery-3-1-1-min.js");
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("/")]
|
|
[InlineData("")]
|
|
public void Should_Define_And_Get_Embedded_Root_Directory_Contents(string path)
|
|
{
|
|
//Act
|
|
var contents = _virtualFileProvider.GetDirectoryContents(path);
|
|
|
|
//Assert
|
|
contents.Exists.ShouldNotBeNull();
|
|
|
|
var contentList = contents.ToList();
|
|
contentList.ShouldContain(x => x.Name == "js");
|
|
}
|
|
|
|
[DependsOn(typeof(AbpVirtualFileSystemModule))]
|
|
public class TestModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpVirtualFileSystemOptions>(options =>
|
|
{
|
|
options.FileSets.AddEmbedded<TestModule>("Volo.Abp.VirtualFileSystem.MyResources");
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|