feat: setup check and test for federate/* workspaces

This commit is contained in:
Aravinth Manivannan 2022-05-17 19:58:11 +05:30
parent 65eab4e488
commit 882fde7d20
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88
4 changed files with 208 additions and 14 deletions

55
Cargo.lock generated
View file

@ -518,6 +518,17 @@ dependencies = [
"instant", "instant",
] ]
[[package]]
name = "federate-core"
version = "0.1.0"
dependencies = [
"async-trait",
"db-core",
"serde",
"thiserror",
"url",
]
[[package]] [[package]]
name = "flate2" name = "flate2"
version = "1.0.23" version = "1.0.23"
@ -1148,6 +1159,15 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "mktemp"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "975de676448231fcde04b9149d2543077e166b78fc29eae5aa219e7928410da2"
dependencies = [
"uuid",
]
[[package]] [[package]]
name = "native-tls" name = "native-tls"
version = "0.2.10" version = "0.2.10"
@ -1521,6 +1541,22 @@ dependencies = [
"unicode-xid", "unicode-xid",
] ]
[[package]]
name = "publiccodeyml"
version = "0.1.0"
dependencies = [
"actix-rt",
"async-trait",
"db-core",
"federate-core",
"mktemp",
"serde",
"serde_yaml",
"thiserror",
"tokio",
"url",
]
[[package]] [[package]]
name = "quick-error" name = "quick-error"
version = "1.2.3" version = "1.2.3"
@ -1912,6 +1948,18 @@ dependencies = [
"serde", "serde",
] ]
[[package]]
name = "serde_yaml"
version = "0.8.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "707d15895415db6628332b737c838b88c598522e4dc70647e59b72312924aebc"
dependencies = [
"indexmap",
"ryu",
"serde",
"yaml-rust",
]
[[package]] [[package]]
name = "sha-1" name = "sha-1"
version = "0.8.2" version = "0.8.2"
@ -2365,9 +2413,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.18.1" version = "1.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dce653fb475565de9f6fb0614b28bca8df2c430c0cf84bcd9c843f15de5414cc" checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
dependencies = [ dependencies = [
"bytes", "bytes",
"libc", "libc",
@ -2686,6 +2734,9 @@ name = "uuid"
version = "0.8.2" version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom",
]
[[package]] [[package]]
name = "validator" name = "validator"

View file

@ -9,6 +9,18 @@ edition = "2021"
license = "AGPLv3 or later version" license = "AGPLv3 or later version"
build = "build.rs" build = "build.rs"
[workspace]
exclude = ["db/migrator"]
members = [
".",
"db/db-core",
"db/db-sqlx-sqlite",
"forge/forge-core",
"forge/gitea",
"federate/federate-core",
"federate/publiccodeyml"
]
[dependencies] [dependencies]
actix-rt = "2.7" actix-rt = "2.7"
async-trait = "0.1.51" async-trait = "0.1.51"
@ -56,7 +68,3 @@ path = "./forge/forge-core"
[dependencies.sqlx] [dependencies.sqlx]
features = ["runtime-actix-rustls", "uuid", "postgres", "time", "offline", "sqlite"] features = ["runtime-actix-rustls", "uuid", "postgres", "time", "offline", "sqlite"]
version = "0.5.11" version = "0.5.11"
[workspace]
exclude = ["db/migrator"]
members = [".", "db/db-core", "db/db-sqlx-sqlite", "forge/forge-core", "forge/gitea"]

View file

@ -3,17 +3,35 @@ define launch_test_env
python ./scripts/gitea.py python ./scripts/gitea.py
endef endef
define test_sqlite_db define test_databases
cd db/db-core &&\
cargo test --no-fail-fast
cd db/db-sqlx-sqlite &&\ cd db/db-sqlx-sqlite &&\
DATABASE_URL=${SQLITE_DATABASE_URL}\ DATABASE_URL=${SQLITE_DATABASE_URL}\
cargo test --no-fail-fast cargo test --no-fail-fast
endef endef
define test_gitea_forge define test_forges
cd forge/forge-core && \
cargo test --no-fail-fast
cd forge/gitea && \ cd forge/gitea && \
cargo test --no-fail-fast cargo test --no-fail-fast
endef endef
define test_federation
cd federate/federate-core && \
cargo test --no-fail-fast
cd federate/publiccodeyml && \
cargo test --no-fail-fast
endef
define test_workspaces
$(call test_databases)
$(call test_forges)
$(call test_federation)
cargo test --no-fail-fast
endef
default: ## Debug build default: ## Debug build
cargo build cargo build
@ -29,13 +47,15 @@ coverage: migrate ## Generate coverage report in HTML format
check: ## Check for syntax errors on all workspaces check: ## Check for syntax errors on all workspaces
cargo check --workspace --tests --all-features cargo check --workspace --tests --all-features
cd db/migrator && cargo check --tests --all-features
cd forge/forge-core && cargo check --tests --all-features
cd forge/gitea && cargo check --tests --all-features
cd db/db-sqlx-sqlite &&\ cd db/db-sqlx-sqlite &&\
DATABASE_URL=${SQLITE_DATABASE_URL}\ DATABASE_URL=${SQLITE_DATABASE_URL}\
cargo check cargo check
cd db/db-core/ && cargo check cd db/db-core/ && cargo check
cd db/migrator && cargo check --tests --all-features
cd forge/forge-core && cargo check --tests --all-features
cd forge/gitea && cargo check --tests --all-features
cd federate/federate-core && cargo check --tests --all-features
cd federate/publiccodeyml && cargo check --tests --all-features
dev-env: ## Download development dependencies dev-env: ## Download development dependencies
$(call launch_test_env) $(call launch_test_env)
@ -73,9 +93,7 @@ sqlx-offline-data: ## prepare sqlx offline data
--all-features --all-features
test: migrate ## Run tests test: migrate ## Run tests
$(call launch_test_env) $(call launch_test_env)
$(call test_sqlite_db) $(call test_workspaces)
$(call test_gitea_forge)
cargo test --no-fail-fast
# cd database/db-sqlx-postgres &&\ # cd database/db-sqlx-postgres &&\
# DATABASE_URL=${POSTGRES_DATABASE_URL}\ # DATABASE_URL=${POSTGRES_DATABASE_URL}\

117
spider.rs Normal file
View file

@ -0,0 +1,117 @@
/*
* ForgeFlux StarChart - A federated software forge spider
* Copyright © 2022 Aravinth Manivannan <realaravinth@batsense.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use std::time::Duration;
use tokio::time;
use url::Url;
use crate::data::Data;
use crate::gitea::SearchResults;
const REPO_SEARCH_PATH: &str = "/api/v1/repos/search";
const GITEA_NODEINFO: &str = "/api/v1/nodeinfo";
impl Data {
pub async fn crawl(&self, hostname: &str) -> Vec<SearchResults> {
let mut page = 1;
let mut url = Url::parse(hostname).unwrap();
url.set_path(REPO_SEARCH_PATH);
let mut repos = Vec::new();
loop {
let mut url = url.clone();
url.set_query(Some(&format!(
"page={page}&limit={}",
self.settings.crawler.items_per_api_call
)));
let res: SearchResults = self
.client
.get(url)
.send()
.await
.unwrap()
.json()
.await
.unwrap();
// TODO implement save
time::sleep(Duration::new(
self.settings.crawler.wait_before_next_api_call,
0,
))
.await;
if res.data.is_empty() {
return repos;
}
for d in res.data.iter() {
}
repos.push(res);
page += 1;
}
}
/// purpose: interact with instance running on provided hostname and verify if the instance is a
/// Gitea instance.
///
/// will get nodeinfo information, which contains an identifier to uniquely identify Gitea
pub async fn is_gitea(&self, hostname: &str) -> bool {
const GITEA_IDENTIFIER: &str = "gitea";
let mut url = Url::parse(hostname).unwrap();
url.set_path(GITEA_NODEINFO);
let res: serde_json::Value = self
.client
.get(url)
.send()
.await
.unwrap()
.json()
.await
.unwrap();
if let serde_json::Value::String(software) = &res["software"]["name"] {
software == GITEA_IDENTIFIER
} else {
false
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::settings::Settings;
pub const GITEA_HOST: &str = "http://localhost:8080";
#[actix_rt::test]
async fn is_gitea_works() {
let data = Data::new(Settings::new().unwrap()).await;
assert!(data.is_gitea(GITEA_HOST).await);
}
#[actix_rt::test]
async fn crawl_gitea() {
use crate::tests::sqlx_sqlite;
let data = Data::new(Settings::new().unwrap()).await;
let db = sqlx_sqlite::get_data();
let res = data.crawl(GITEA_HOST).await;
let mut elements = 0;
res.iter().for_each(|r| elements += r.data.len());
assert_eq!(res.len(), 5);
assert_eq!(elements, 100);
}
}