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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
use crate::prelude::*;
pub async fn adding_forge_works<'a, T: SCDatabase>(
db: &T,
create_forge_msg: CreateForge<'a>,
add_user_msg: AddUser<'a>,
add_user_msg2: AddUser<'a>,
add_repo_msg: AddRepository<'a>,
) {
let _ = db.delete_forge_instance(&create_forge_msg.url).await;
db.create_forge_instance(&create_forge_msg).await.unwrap();
assert!(
db.forge_exists(&create_forge_msg.url).await.unwrap(),
"forge creation failed, forge existence check failure"
);
{
let forge = db.get_forge(&create_forge_msg.url).await.unwrap();
let forges = db.get_all_forges(true, 0, 100).await.unwrap();
assert!(forges
.iter()
.any(|f| f.url == create_forge_msg.url.to_string()));
assert_eq!(forge.forge_type, create_forge_msg.forge_type);
assert_eq!(forge.url, crate::clean_url(&create_forge_msg.url));
}
db.add_user(&add_user_msg).await.unwrap();
db.add_user(&add_user_msg2).await.unwrap();
{
let db_user = db
.get_user(add_user_msg.username, &add_user_msg.url)
.await
.unwrap();
assert_eq!(db_user.url, crate::clean_url(&add_user_msg.url));
assert_eq!(db_user.username, add_user_msg.username);
assert_eq!(db_user.html_link, add_user_msg.html_link);
assert_eq!(
db_user.profile_photo,
add_user_msg.profile_photo.map(|s| s.to_owned())
);
}
assert!(db.user_exists(add_user_msg.username, None).await.unwrap());
assert!(db
.user_exists(add_user_msg.username, Some(&add_user_msg.url))
.await
.unwrap());
assert!(db
.is_word_mini_indexed(add_user_msg2.username)
.await
.unwrap());
db.create_repository(&add_repo_msg).await.unwrap();
assert!(db
.repository_exists(add_repo_msg.name, add_repo_msg.owner, &add_repo_msg.url)
.await
.unwrap());
assert!(db.is_word_mini_indexed(add_repo_msg.owner).await.unwrap());
assert!(db.is_word_mini_indexed(add_repo_msg.name).await.unwrap());
assert!(db
.is_word_mini_indexed(add_repo_msg.description.unwrap())
.await
.unwrap());
assert!(db
.is_word_mini_indexed(add_repo_msg.website.unwrap())
.await
.unwrap());
assert!(!db.get_all_repositories(00, 1000).await.unwrap().is_empty());
let repo_search = db.search_repository(add_repo_msg.name).await.unwrap();
assert!(!repo_search.is_empty());
assert_eq!(repo_search.first().unwrap().url, add_repo_msg.url.as_str());
db.delete_repository(add_repo_msg.owner, add_repo_msg.name, &add_repo_msg.url)
.await
.unwrap();
assert!(!db
.repository_exists(add_repo_msg.name, add_repo_msg.owner, &add_repo_msg.url)
.await
.unwrap());
db.delete_user(add_user_msg.username, &add_user_msg.url)
.await
.unwrap();
assert!(!db
.user_exists(add_user_msg.username, Some(&add_user_msg.url))
.await
.unwrap());
}
pub async fn forge_type_exists_helper<T: SCDatabase>(db: &T) {
let f = ForgeImplementation::Gitea;
println!("Testing forge implementation exists for: {}", f.to_str());
assert!(db.forge_type_exists(&f).await.unwrap());
}
pub async fn instance_introducer_helper<T: SCDatabase>(db: &T, instance_url: &Url) {
const MINI_INDEX: &str = "instance_introducer_helper test mini index uniquerq2342";
db.add_starchart_to_introducer(instance_url).await.unwrap();
let instances = db
.get_all_introduced_starchart_instances(0, 100)
.await
.unwrap();
assert!(instances
.iter()
.any(|i| i.instance_url == instance_url.as_str()));
db.import_mini_index(instance_url, MINI_INDEX)
.await
.unwrap();
let matching_instances = db.search_mini_index("uniquerq2342").await.unwrap();
assert_eq!(matching_instances.len(), 1);
assert_eq!(matching_instances.first().unwrap(), instance_url.as_str());
db.rm_starchart_import(instance_url).await.unwrap();
assert!(!db.is_starchart_imported(instance_url).await.unwrap());
db.record_starchart_imports(instance_url).await.unwrap();
assert!(db.is_starchart_imported(instance_url).await.unwrap());
db.rm_starchart_import(instance_url).await.unwrap();
assert!(!db.is_starchart_imported(instance_url).await.unwrap());
}
pub async fn mini_index_helper<T: SCDatabase>(db: &T) {
const WORDS: [&str; 5] = ["batman", "superman", "aquaman", "Batman", "batman"];
let expected_mini_index = "superman aquaman Batman batman";
for w in WORDS.iter() {
db.rm_word_from_mini_index(w).await.unwrap();
assert!(!db.is_word_mini_indexed(w).await.unwrap());
db.add_word_to_mini_index(w).await.unwrap();
assert!(db.is_word_mini_indexed(w).await.unwrap());
}
let mini_index = db.export_mini_index().await.unwrap();
assert!(mini_index.contains(expected_mini_index));
}