1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

formatting

This commit is contained in:
Kyle Spearrin 2019-02-09 22:05:24 -05:00
parent c006325850
commit f0fa1e00fb

View File

@ -1,6 +1,4 @@
using System; using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Xunit; using Xunit;
using Bit.Core.Repositories; using Bit.Core.Repositories;
@ -12,12 +10,12 @@ namespace Bit.Core.Test.Services
{ {
public class CollectionServiceTest public class CollectionServiceTest
{ {
readonly IEventService _eventService; private readonly IEventService _eventService;
readonly IOrganizationRepository _organizationRepository; private readonly IOrganizationRepository _organizationRepository;
readonly IOrganizationUserRepository _organizationUserRepository; private readonly IOrganizationUserRepository _organizationUserRepository;
readonly ICollectionRepository _collectionRepository; private readonly ICollectionRepository _collectionRepository;
readonly IUserRepository _userRepository; private readonly IUserRepository _userRepository;
readonly IMailService _mailService; private readonly IMailService _mailService;
public CollectionServiceTest() public CollectionServiceTest()
{ {
@ -32,7 +30,8 @@ namespace Bit.Core.Test.Services
[Fact] [Fact]
public async Task SaveAsync_CollectionNotFound() public async Task SaveAsync_CollectionNotFound()
{ {
var collectionService = new CollectionService(_eventService, var collectionService = new CollectionService(
_eventService,
_organizationRepository, _organizationRepository,
_organizationUserRepository, _organizationUserRepository,
_collectionRepository, _collectionRepository,
@ -54,17 +53,18 @@ namespace Bit.Core.Test.Services
} }
[Fact] [Fact]
public async Task SaveAsync_DefaultCollectionId_createsCollectionInTheRepository() public async Task SaveAsync_DefaultCollectionId_CreatesCollectionInTheRepository()
{ {
// prepare the organization // prepare the organization
var testOrganizationId = Guid.NewGuid(); var testOrganizationId = Guid.NewGuid();
var testOrganization = new Models.Table.Organization() var testOrganization = new Models.Table.Organization
{ {
Id = testOrganizationId, Id = testOrganizationId,
}; };
_organizationRepository.GetByIdAsync(testOrganizationId).Returns<Models.Table.Organization>(testOrganization); _organizationRepository.GetByIdAsync(testOrganizationId).Returns(testOrganization);
var collectionService = new CollectionService(_eventService, var collectionService = new CollectionService(
_eventService,
_organizationRepository, _organizationRepository,
_organizationUserRepository, _organizationUserRepository,
_collectionRepository, _collectionRepository,
@ -83,11 +83,11 @@ namespace Bit.Core.Test.Services
} }
[Fact] [Fact]
public async Task SaveAsync_respectsMaxNumberOfCollectionsPerOrganization() public async Task SaveAsync_RespectsMaxNumberOfCollectionsPerOrganization()
{ {
// prepare the organization // prepare the organization
var testOrganizationId = Guid.NewGuid(); var testOrganizationId = Guid.NewGuid();
var testOrganization = new Models.Table.Organization() var testOrganization = new Models.Table.Organization
{ {
Id = testOrganizationId, Id = testOrganizationId,
MaxCollections = 2, MaxCollections = 2,
@ -96,7 +96,8 @@ namespace Bit.Core.Test.Services
_collectionRepository.GetCountByOrganizationIdAsync(testOrganizationId).Returns(2); _collectionRepository.GetCountByOrganizationIdAsync(testOrganizationId).Returns(2);
// execute // execute
var collectionService = new CollectionService(_eventService, var collectionService = new CollectionService(
_eventService,
_organizationRepository, _organizationRepository,
_organizationUserRepository, _organizationUserRepository,
_collectionRepository, _collectionRepository,
@ -115,11 +116,11 @@ namespace Bit.Core.Test.Services
} }
[Fact] [Fact]
public async Task DeleteUserAsync_deletesValidUserWhoBelongsToCollection() public async Task DeleteUserAsync_DeletesValidUserWhoBelongsToCollection()
{ {
// prepare the organization // prepare the organization
var testOrganizationId = Guid.NewGuid(); var testOrganizationId = Guid.NewGuid();
var testOrganization = new Models.Table.Organization() var testOrganization = new Models.Table.Organization
{ {
Id = testOrganizationId, Id = testOrganizationId,
}; };
@ -132,7 +133,8 @@ namespace Bit.Core.Test.Services
_organizationUserRepository.GetByIdAsync(testUserId).Returns(organizationUser); _organizationUserRepository.GetByIdAsync(testUserId).Returns(organizationUser);
// execute // execute
var collectionService = new CollectionService(_eventService, var collectionService = new CollectionService(
_eventService,
_organizationRepository, _organizationRepository,
_organizationUserRepository, _organizationUserRepository,
_collectionRepository, _collectionRepository,
@ -147,11 +149,11 @@ namespace Bit.Core.Test.Services
} }
[Fact] [Fact]
public async Task DeleteUserAsync_throwsIfUserIsInvalid() public async Task DeleteUserAsync_ThrowsIfUserIsInvalid()
{ {
// prepare the organization // prepare the organization
var testOrganizationId = Guid.NewGuid(); var testOrganizationId = Guid.NewGuid();
var testOrganization = new Models.Table.Organization() var testOrganization = new Models.Table.Organization
{ {
Id = testOrganizationId, Id = testOrganizationId,
}; };
@ -164,7 +166,8 @@ namespace Bit.Core.Test.Services
_organizationUserRepository.GetByIdAsync(testUserId).Returns(nonOrganizationUser); _organizationUserRepository.GetByIdAsync(testUserId).Returns(nonOrganizationUser);
// execute // execute
var collectionService = new CollectionService(_eventService, var collectionService = new CollectionService(
_eventService,
_organizationRepository, _organizationRepository,
_organizationUserRepository, _organizationUserRepository,
_collectionRepository, _collectionRepository,
@ -175,9 +178,11 @@ namespace Bit.Core.Test.Services
// verify // verify
// invalid user // invalid user
await Assert.ThrowsAsync<NotFoundException>(() => collectionService.DeleteUserAsync(testCollection, Guid.NewGuid())); await Assert.ThrowsAsync<NotFoundException>(() =>
collectionService.DeleteUserAsync(testCollection, Guid.NewGuid()));
// user from other organization // user from other organization
await Assert.ThrowsAsync<NotFoundException>(() => collectionService.DeleteUserAsync(testCollection, testUserId)); await Assert.ThrowsAsync<NotFoundException>(() =>
collectionService.DeleteUserAsync(testCollection, testUserId));
} }
} }
} }