File: DeleteImageOperationTests.cpp

package info (click to toggle)
ksnip 1.10.1%2Bgit20240308-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,756 kB
  • sloc: cpp: 22,230; xml: 380; makefile: 7
file content (105 lines) | stat: -rw-r--r-- 3,176 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright (C) 2020 Damir Porobic <damir.porobic@gmx.com>
 *
 * 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 2 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "DeleteImageOperationTests.h"

#include "src/gui/operations/DeleteImageOperation.h"

#include "tests/utils/TestRunner.h"
#include "tests/mocks/gui/messageBoxService/MessageBoxServiceMock.h"
#include "tests/mocks/gui/fileService/FileServiceMock.h"

void DeleteImageOperationTests::Execute_Should_ReturnFalse_When_MessageBoxResponseWasCancel()
{
	// arrange
	auto path = QString("/la/la");
	MessageBoxServiceMock messageBoxServiceMock;
	FileServiceMock fileServiceMock;

	EXPECT_CALL(messageBoxServiceMock, okCancel(testing::_, testing::_))
			.WillRepeatedly([=](const QString &title, const QString &question) {
				return false;
			});

	DeleteImageOperation operation(path, &fileServiceMock, &messageBoxServiceMock);

	EXPECT_CALL(fileServiceMock, remove(path)).Times(testing::Exactly(0));

	// act
	auto result = operation.execute();

	// assert
    QCOMPARE(result, false);
}

void DeleteImageOperationTests::Execute_Should_ReturnTrue_When_MessageBoxResponseWasTrue_And_FileServiceSaveSuccessfully()
{
	// arrange
	auto path = QString("/la/la");
	MessageBoxServiceMock messageBoxServiceMock;
	FileServiceMock fileServiceMock;

	EXPECT_CALL(messageBoxServiceMock, okCancel(testing::_, testing::_))
			.WillRepeatedly([=](const QString &title, const QString &question) {
				return true;
			});

	EXPECT_CALL(fileServiceMock, remove(path))
			.Times(testing::Exactly(1))
			.WillRepeatedly([=](const QString &path) {
				return true;
			});

	DeleteImageOperation operation(path, &fileServiceMock, &messageBoxServiceMock);

	// act
	auto result = operation.execute();

	// assert
    QCOMPARE(result, true);
}

void DeleteImageOperationTests::Execute_Should_ReturnFalse_When_MessageBoxResponseWasTrue_And_FileServiceSaveFailed()
{
	// arrange
	auto path = QString("/la/la");
	MessageBoxServiceMock messageBoxServiceMock;
	FileServiceMock fileServiceMock;

	EXPECT_CALL(messageBoxServiceMock, okCancel(testing::_, testing::_))
			.WillRepeatedly([=](const QString &title, const QString &question) {
				return true;
			});

	EXPECT_CALL(fileServiceMock, remove(path))
			.Times(testing::Exactly(1))
			.WillRepeatedly([=](const QString &path) {
				return false;
			});

	DeleteImageOperation operation(path, &fileServiceMock, &messageBoxServiceMock);

	// act
	auto result = operation.execute();

	// assert
	QCOMPARE(result, false);
}

TEST_MAIN(DeleteImageOperationTests)