77 lines
2.2 KiB
C#
77 lines
2.2 KiB
C#
/*
|
|
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Moq;
|
|
using SafeExamBrowser.Client.Notifications;
|
|
using SafeExamBrowser.Contracts.Logging;
|
|
using SafeExamBrowser.Contracts.UserInterface;
|
|
using SafeExamBrowser.Contracts.UserInterface.Windows;
|
|
|
|
namespace SafeExamBrowser.Client.UnitTests.Notifications
|
|
{
|
|
[TestClass]
|
|
public class LogNotificationControllerTests
|
|
{
|
|
private Mock<ILogger> loggerMock;
|
|
private Mock<IUserInterfaceFactory> uiFactoryMock;
|
|
|
|
[TestInitialize]
|
|
public void Initialize()
|
|
{
|
|
loggerMock = new Mock<ILogger>();
|
|
uiFactoryMock = new Mock<IUserInterfaceFactory>();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void MustCloseWindowWhenTerminating()
|
|
{
|
|
var button = new NotificationButtonMock();
|
|
var window = new Mock<IWindow>();
|
|
var sut = new LogNotificationController(loggerMock.Object, uiFactoryMock.Object);
|
|
|
|
uiFactoryMock.Setup(u => u.CreateLogWindow(It.IsAny<ILogger>())).Returns(window.Object);
|
|
sut.RegisterNotification(button);
|
|
button.Click();
|
|
sut.Terminate();
|
|
|
|
window.Verify(w => w.Close());
|
|
}
|
|
|
|
[TestMethod]
|
|
public void MustOpenOnlyOneWindow()
|
|
{
|
|
var button = new NotificationButtonMock();
|
|
var window = new Mock<IWindow>();
|
|
var sut = new LogNotificationController(loggerMock.Object, uiFactoryMock.Object);
|
|
|
|
uiFactoryMock.Setup(u => u.CreateLogWindow(It.IsAny<ILogger>())).Returns(window.Object);
|
|
sut.RegisterNotification(button);
|
|
button.Click();
|
|
button.Click();
|
|
button.Click();
|
|
button.Click();
|
|
button.Click();
|
|
|
|
uiFactoryMock.Verify(u => u.CreateLogWindow(It.IsAny<ILogger>()), Times.Once);
|
|
window.Verify(u => u.Show(), Times.Once);
|
|
window.Verify(u => u.BringToForeground(), Times.Exactly(4));
|
|
}
|
|
|
|
[TestMethod]
|
|
public void MustSubscribeToClickEvent()
|
|
{
|
|
var button = new NotificationButtonMock();
|
|
var sut = new LogNotificationController(loggerMock.Object, uiFactoryMock.Object);
|
|
|
|
sut.RegisterNotification(button);
|
|
|
|
Assert.IsTrue(button.HasSubscribed);
|
|
}
|
|
}
|
|
}
|