34 lines
1012 B
C#
34 lines
1012 B
C#
using System;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Storj;
|
|
|
|
namespace StorjTests
|
|
{
|
|
[TestClass]
|
|
public class ValidateIdentityDirTests
|
|
{
|
|
[TestMethod]
|
|
[ExpectedExceptionWithMessage(typeof(ArgumentException), "You must select an identity folder.")]
|
|
public void NullIdentityDir()
|
|
{
|
|
CustomActionRunner.ValidateIdentityDir(null);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedExceptionWithMessage(typeof(ArgumentException), "You must select an identity folder.")]
|
|
public void EmptyIdentityDir()
|
|
{
|
|
CustomActionRunner.ValidateIdentityDir("");
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedExceptionWithMessage(typeof(ArgumentException), "Folder 'X:\\Some\\Nonexistent\\Folder' does not exist.")]
|
|
public void NonexistentIdentityDir()
|
|
{
|
|
CustomActionRunner.ValidateIdentityDir("X:\\Some\\Nonexistent\\Folder");
|
|
}
|
|
|
|
// TODO: add tests that mock the file system
|
|
}
|
|
}
|