2024-01-10 11:15:05 +08:00
|
|
|
use client_api::ClientConfiguration;
|
2024-05-22 14:24:11 +08:00
|
|
|
use semver::Version;
|
2023-10-02 17:22:22 +08:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2024-04-26 09:44:07 +08:00
|
|
|
use flowy_error::FlowyResult;
|
2023-10-02 17:22:22 +08:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
2024-04-26 09:44:07 +08:00
|
|
|
use flowy_server::af_cloud::define::ServerUser;
|
2023-11-20 20:54:47 +08:00
|
|
|
use flowy_server::af_cloud::AppFlowyCloudServer;
|
2023-10-02 17:22:22 +08:00
|
|
|
use flowy_server::supabase::define::{USER_DEVICE_ID, USER_SIGN_IN_URL};
|
2024-01-11 14:42:03 +08:00
|
|
|
use flowy_server_pub::af_cloud_config::AFCloudConfiguration;
|
2023-10-02 17:22:22 +08:00
|
|
|
|
|
|
|
use crate::setup_log;
|
|
|
|
|
2023-11-12 18:00:07 +08:00
|
|
|
/// To run the test, create a .env.ci file in the 'flowy-server' directory and set the following environment variables:
|
|
|
|
///
|
|
|
|
/// - `APPFLOWY_CLOUD_BASE_URL=http://localhost:8000`
|
|
|
|
/// - `APPFLOWY_CLOUD_WS_BASE_URL=ws://localhost:8000/ws`
|
|
|
|
/// - `APPFLOWY_CLOUD_GOTRUE_URL=http://localhost:9998`
|
|
|
|
///
|
|
|
|
/// - `GOTRUE_ADMIN_EMAIL=admin@example.com`
|
|
|
|
/// - `GOTRUE_ADMIN_PASSWORD=password`
|
2023-10-02 17:22:22 +08:00
|
|
|
pub fn get_af_cloud_config() -> Option<AFCloudConfiguration> {
|
2024-07-26 21:27:19 +08:00
|
|
|
dotenvy::from_filename("./.env.ci").ok()?;
|
2023-10-02 17:22:22 +08:00
|
|
|
setup_log();
|
|
|
|
AFCloudConfiguration::from_env().ok()
|
|
|
|
}
|
|
|
|
|
2023-11-20 20:54:47 +08:00
|
|
|
pub fn af_cloud_server(config: AFCloudConfiguration) -> Arc<AppFlowyCloudServer> {
|
2023-10-02 17:22:22 +08:00
|
|
|
let fake_device_id = uuid::Uuid::new_v4().to_string();
|
2024-02-08 23:53:05 +08:00
|
|
|
Arc::new(AppFlowyCloudServer::new(
|
|
|
|
config,
|
|
|
|
true,
|
|
|
|
fake_device_id,
|
2024-05-22 14:24:11 +08:00
|
|
|
Version::new(0, 5, 8),
|
2024-04-26 09:44:07 +08:00
|
|
|
Arc::new(FakeServerUserImpl),
|
2024-02-08 23:53:05 +08:00
|
|
|
))
|
2023-10-02 17:22:22 +08:00
|
|
|
}
|
|
|
|
|
2024-04-26 09:44:07 +08:00
|
|
|
struct FakeServerUserImpl;
|
|
|
|
impl ServerUser for FakeServerUserImpl {
|
|
|
|
fn workspace_id(&self) -> FlowyResult<String> {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-02 17:22:22 +08:00
|
|
|
pub async fn generate_sign_in_url(user_email: &str, config: &AFCloudConfiguration) -> String {
|
2024-01-10 11:15:05 +08:00
|
|
|
let client = client_api::Client::new(
|
|
|
|
&config.base_url,
|
|
|
|
&config.ws_base_url,
|
|
|
|
&config.gotrue_url,
|
2024-02-08 23:53:05 +08:00
|
|
|
"fake_device_id",
|
2024-01-10 11:15:05 +08:00
|
|
|
ClientConfiguration::default(),
|
2024-02-08 23:53:05 +08:00
|
|
|
"test",
|
2024-01-10 11:15:05 +08:00
|
|
|
);
|
2023-10-02 17:22:22 +08:00
|
|
|
let admin_email = std::env::var("GOTRUE_ADMIN_EMAIL").unwrap();
|
|
|
|
let admin_password = std::env::var("GOTRUE_ADMIN_PASSWORD").unwrap();
|
2024-01-10 11:15:05 +08:00
|
|
|
let admin_client = client_api::Client::new(
|
|
|
|
client.base_url(),
|
|
|
|
client.ws_addr(),
|
|
|
|
client.gotrue_url(),
|
2024-02-08 23:53:05 +08:00
|
|
|
"fake_device_id",
|
2024-01-10 11:15:05 +08:00
|
|
|
ClientConfiguration::default(),
|
2024-03-07 12:50:28 +08:00
|
|
|
&client.client_version.to_string(),
|
2024-01-10 11:15:05 +08:00
|
|
|
);
|
2023-11-12 18:00:07 +08:00
|
|
|
admin_client
|
|
|
|
.sign_in_password(&admin_email, &admin_password)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let action_link = admin_client
|
2023-11-20 20:54:47 +08:00
|
|
|
.generate_sign_in_action_link(user_email)
|
2023-10-02 17:22:22 +08:00
|
|
|
.await
|
2023-11-12 18:00:07 +08:00
|
|
|
.unwrap();
|
|
|
|
client.extract_sign_in_url(&action_link).await.unwrap()
|
2023-10-02 17:22:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn af_cloud_sign_up_param(
|
|
|
|
email: &str,
|
|
|
|
config: &AFCloudConfiguration,
|
|
|
|
) -> HashMap<String, String> {
|
|
|
|
let mut params = HashMap::new();
|
|
|
|
params.insert(
|
|
|
|
USER_SIGN_IN_URL.to_string(),
|
|
|
|
generate_sign_in_url(email, config).await,
|
|
|
|
);
|
|
|
|
params.insert(USER_DEVICE_ID.to_string(), Uuid::new_v4().to_string());
|
|
|
|
params
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn generate_test_email() -> String {
|
|
|
|
format!("{}@test.com", Uuid::new_v4())
|
|
|
|
}
|