1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-21 12:05:42 +01:00
bitwarden-server/test
Addison Beck 98a191a5e8
Allow for bulk processing new login device requests (#4064)
* Define a model for updating many auth requests

In order to facilitate a command method that can update many auth
requests at one time a new model must be defined that accepts valid
input for the command's needs. To achieve this a new file has been
created at
`Core/AdminConsole/OrganizationAuth/Models/OrganizationAuthRequestUpdateCommandModel.cs`
that contains a class of the same name. It's properties match those that
need to come from any calling API request models to fulfill the request.

* Declare a new command interface method

Calling API functions of the `UpdateOrganizationAuthRequestCommand` need
a function that can accept many auth request response objects and
process them as approved or denied. To achieve this a new function has
been added to `IUpdateOrganizationAuthRequestCommand` called
`UpdateManyAsync()` that accepts an
`IEnumberable<OrganizationAuthRequest>` and returns a `Task`.
Implementations of this interface method will be used to bulk process
auth requests as approved or denied.

* Stub out method implementation for unit testing

To facilitate a bulk device login request approval workflow in the admin
console `UpdateOrganizationAuthRequestCommand` needs to be updated to
include an `UpdateMany()` method. It should accept a list of
`OrganizationAuthRequestUpdateCommandModel` objects, perform some simple
data validation checks, and then pass those along to
`AuthRequestRepository` for updating in the database.

This commit stubs out this method for the purpose of writing unit tests.
At this stage the method throws a `NotImplementedException()`. It will
be expand after writing assertions.

* Inject `IAuthRequestRepository` into `UpdateOrganizationAuthCommand`

The updates to `UpdateOrganizationAuthRequestCommand` require a new
direct dependency on `IAuthRequestRepository`. This commit simply
registers this dependency in the `UpdateOrganizationAuthRequest`
constructor for use in unit tests and the `UpdateManyAsync()`
implementation.

* Write tests

* Rename `UpdateManyAsync()` to `UpdateAsync`

* Drop the `CommandModel` suffix

* Invert business logic update filters

* Rework everything to be more model-centric

* Bulk send push notifications

* Write tests that validate the command as a whole

* Fix a test that I broke by mistake

* Swap to using await instead of chained methods for processing

* Seperate a function arguement into a variable declaration

* Ungeneric-ify the processor

* Adjust ternary formatting

* Adjust naming of methods regarding logging organization events

* Throw an exception if Process is called with no auth request loaded

* Rename `_updates` -> `_update`

* Rename email methods

* Stop returning `this`

* Allow callbacks to be null

* Make some assertions about the state of a processed auth request

* Be more terse about arguements in happy path test

* Remove unneeded null check

* Expose an endpoint for bulk processing of organization auth requests  (#4077)

---------

Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
2024-05-27 11:56:52 +10:00
..
Admin.Test Include all projects in coverage (#3829) 2024-02-20 17:18:40 +01:00
Api.IntegrationTest [SM-1030] Cleanup old access policy management code (#4015) 2024-05-06 14:56:58 -05:00
Api.Test Allow for bulk processing new login device requests (#4064) 2024-05-27 11:56:52 +10:00
Billing.Test Removed the need to verify requests as CloudOps added an ACL on the network (#3882) 2024-03-11 10:03:10 -04:00
Common Stop using lockfiles (#3550) 2023-12-12 09:09:42 -05:00
Core.Test Allow for bulk processing new login device requests (#4064) 2024-05-27 11:56:52 +10:00
Events.Test Include all projects in coverage (#3829) 2024-02-20 17:18:40 +01:00
EventsProcessor.Test Include all projects in coverage (#3829) 2024-02-20 17:18:40 +01:00
Icons.Test [PM-5052] Upgrade to .NET 8 (#3461) 2024-02-05 13:03:42 -05:00
Identity.IntegrationTest [PM-7335] [deps] Auth: Update Duende.IdentityServer to v7 (#3709) 2024-04-30 09:50:36 -07:00
Identity.Test [PM-3777[PM-3633] Update minimum KDF iterations when creating new User record (#3687) 2024-01-25 10:59:53 -05:00
Infrastructure.EFIntegration.Test [BEEEP] begin 2fa integration tests for identity (#3843) 2024-04-05 09:30:42 -04:00
Infrastructure.IntegrationTest [AC-2328] Add a Bulk OrganizationUsersController.GetResetPasswordDetails endpoint (#4079) 2024-05-24 11:20:54 +01:00
IntegrationTestCommon [BEEEP][SM-893] Add the ability to run SM integration tests as a service account (#3187) 2024-03-29 11:00:30 -05:00
Notifications.Test Include all projects in coverage (#3829) 2024-02-20 17:18:40 +01:00
bitwarden.tests.sln Include all projects in coverage (#3829) 2024-02-20 17:18:40 +01:00