aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tst_qPrefCloudStorage.qml
blob: 0d0dc6b61eef73bb4fa154096f65339fd89909e4 (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.6
import QtTest 1.2
import org.subsurfacedivelog.mobile 1.0

TestCase {
	name: "qPrefCloudStorage"

	SsrfCloudStoragePrefs {
		id: tst
	}

	SsrfPrefs {
		id: prefs
	}

	function test_variables() {
		var x1 = tst.cloud_base_url
		tst.cloud_base_url = "my url"
		compare(tst.cloud_base_url, "my url")

		var x2 = tst.cloud_git_url
		compare(tst.cloud_git_url, "my url/git")

		var x3 = tst.cloud_storage_email
		tst.cloud_storage_email = "my email"
		compare(tst.cloud_storage_email, "my email")

		var x4 = tst.cloud_storage_email_encoded
		tst.cloud_storage_email_encoded= "my email enc"
		compare(tst.cloud_storage_email_encoded, "my email enc")

		var x5 = tst.cloud_storage_newpassword
		tst.cloud_storage_newpassword = "my new password"
		compare(tst.cloud_storage_newpassword, "my new password")

		var x6 = tst.cloud_storage_password
		tst.cloud_storage_password = "my url"
		compare(tst.cloud_storage_password, "my url")

		var x7 = tst.cloud_storage_pin
		tst.cloud_storage_pin= "my pin"
		compare(tst.cloud_storage_pin, "my pin")

		var x8 = tst.cloud_timeout
		tst.cloud_timeout = 137
		compare(tst.cloud_timeout, 137)

		var x9 = tst.cloud_verification_status
		tst.cloud_verification_status = SsrfPrefs.CS_VERIFIED
		compare(tst.cloud_verification_status, SsrfPrefs.CS_VERIFIED)

		var x10 = tst.git_local_only
		tst.git_local_only = true 
		compare(tst.git_local_only, true)

		var x11 = tst.save_password_local
		tst.save_password_local = true
		compare(tst.save_password_local, true)

		var x12 = tst.save_userid_local
		tst.save_userid_local = true
		compare(tst.save_userid_local, true)

		var x13 = tst.userid
		tst.userid = "my user"
		compare(tst.userid, "my user")
	}
}