71 lines
2.1 KiB
C#
71 lines
2.1 KiB
C#
/*
|
|
TShock, a server mod for Terraria
|
|
Copyright (C) 2011 The TShock Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
using System;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Mono.Data.Sqlite;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using TShockAPI;
|
|
using TShockAPI.DB;
|
|
|
|
namespace UnitTests
|
|
{
|
|
[TestClass]
|
|
public class BanManagerTest
|
|
{
|
|
public static IDbConnection DB;
|
|
private BanManager Bans;
|
|
|
|
[TestInitialize]
|
|
public void Initialize()
|
|
{
|
|
TShock.Config = new ConfigFile();
|
|
TShock.Config.StorageType = "sqlite";
|
|
|
|
DB = new SqliteConnection(string.Format("uri=file://{0},Version=3", "tshock.test.sqlite"));
|
|
DB.Open();
|
|
|
|
Bans = new BanManager(DB);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void TestBansDBNotNull()
|
|
{
|
|
Assert.IsNotNull(Bans);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void AddBanTest()
|
|
{
|
|
Assert.IsTrue(Bans.AddBan("127.0.0.1", "BanTest", "Ban Testing"));
|
|
}
|
|
|
|
[TestMethod]
|
|
public void FindBanTest()
|
|
{
|
|
Assert.IsNotNull(Bans.GetBanByIp("127.0.0.1"));
|
|
TShock.Config.EnableBanOnUsernames = true;
|
|
Assert.IsNotNull(Bans.GetBanByName("BanTest"));
|
|
// Disabled this this for now as its currently expected behavour
|
|
//TShock.Config.EnableBanOnUsernames = false;
|
|
//Assert.IsNull(Bans.GetBanByName("BanTest"));
|
|
}
|
|
}
|
|
}
|