mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
using System.Linq;
|
|
using mRemoteNG.Credential.Repositories;
|
|
using mRemoteNGSpecs.Utilities;
|
|
using NUnit.Framework;
|
|
using TechTalk.SpecFlow;
|
|
|
|
namespace mRemoteNGSpecs.StepDefinitions
|
|
{
|
|
[Binding]
|
|
public class CredentialRepositoryListSteps
|
|
{
|
|
private CredentialRepositoryList _credentialRepositoryList;
|
|
private readonly XmlCredentialRepoBuilder _credentialRepoUtilities = new XmlCredentialRepoBuilder();
|
|
|
|
[Given(@"I have a credential repository list")]
|
|
public void GivenIHaveACredentialRepositoryList()
|
|
{
|
|
_credentialRepositoryList = new CredentialRepositoryList();
|
|
}
|
|
|
|
[Given(@"It has (.*) repositories set up")]
|
|
public void GivenItHasRepositoriesSetUp(int numberOfCredentialRepos)
|
|
{
|
|
for (var i = 0; i < numberOfCredentialRepos; i++)
|
|
_credentialRepositoryList.AddProvider(_credentialRepoUtilities.BuildXmlCredentialRepo());
|
|
}
|
|
|
|
[When(@"I press add and complete the creation wizard")]
|
|
public void WhenIPressAddAndCompleteTheCreationWizard()
|
|
{
|
|
var credentialRepo = _credentialRepoUtilities.BuildXmlCredentialRepo();
|
|
_credentialRepositoryList.AddProvider(credentialRepo);
|
|
}
|
|
|
|
[When(@"I remove the first repository")]
|
|
public void WhenIRemoveTheFirstRepository()
|
|
{
|
|
var firstRepo = _credentialRepositoryList.CredentialProviders.First();
|
|
_credentialRepositoryList.RemoveProvider(firstRepo);
|
|
}
|
|
|
|
[Then(@"I will have (.*) credential repository")]
|
|
public void ThenIWillHaveCredentialRepository(int expectedCredRepoCount)
|
|
{
|
|
Assert.That(_credentialRepositoryList.CredentialProviders.Count(), Is.EqualTo(expectedCredRepoCount));
|
|
}
|
|
}
|
|
} |