Abp Framework 8.2.3, Micro Services.
I tried the following test code:
public abstract class SampleAppService_Tests<TStartupModule> : AdministrationServiceApplicationTestBase<TStartupModule>
where TStartupModule : IAbpModule
{
private readonly IPermissionAppService _permissionAppService;
protected SampleAppService_Tests()
{
_permissionAppService = GetRequiredService<IPermissionAppService>();
}
[Fact]
public async Task Should_Get_Permissions()
{
var permissions = await _permissionAppService.GetAsync(RolePermissionValueProvider.ProviderName, "admin");
permissions.ShouldNotBeNull();
permissions.EntityDisplayName.ShouldBe("admin");
permissions.Groups.Count.ShouldBeGreaterThanOrEqualTo(1);
permissions.Groups.SelectMany(x => x.Permissions).Count().ShouldBeGreaterThanOrEqualTo(1);
}
}
The code throw exception:
Autofac.Core.DependencyResolutionException : An exception was thrown while activating Volo.Abp.PermissionManagement.Identity.RolePermissionManagementProvider.
---- Autofac.Core.DependencyResolutionException : None of the constructors found on type 'Volo.Abp.PermissionManagement.Identity.RolePermissionManagementProvider' can be invoked with the available services and parameters:
Cannot resolve parameter 'Volo.Abp.Identity.IUserRoleFinder userRoleFinder' of constructor 'Void .ctor(Volo.Abp.PermissionManagement.IPermissionGrantRepository, Volo.Abp.Guids.IGuidGenerator, Volo.Abp.MultiTenancy.ICurrentTenant, Volo.Abp.Identity.IUserRoleFinder)'.
1 Answer(s)
-
0
Hi, do you have a class which inherits the
SampleAppService_Tests
? It's needed otherwise the required services could not be obtained by di containers.For example, you should have a method like follows, in your tests:
public class EfCoreSampleAppService_Tests : SampleAppService_Tests<MyProjectNameEntityFrameworkCoreTestModule> { }