AppFlowy/frontend/rust-lib/flowy-test/src/helper.rs

203 lines
5.6 KiB
Rust
Raw Normal View History

use crate::prelude::*;
2022-02-24 13:49:18 +00:00
use flowy_folder::prelude::WorkspaceId;
use flowy_folder::{
2021-12-08 09:33:22 +00:00
entities::{
app::*,
view::*,
2022-02-24 13:49:18 +00:00
workspace::{CreateWorkspacePayload, Workspace},
2021-12-08 09:33:22 +00:00
},
2022-01-30 02:33:21 +00:00
event_map::FolderEvent::{CreateWorkspace, OpenWorkspace, *},
2021-12-06 06:41:09 +00:00
};
use flowy_user::{
2022-02-24 13:49:18 +00:00
entities::{SignInPayload, SignUpPayload, UserProfile},
2021-12-14 10:04:51 +00:00
errors::FlowyError,
2022-01-28 02:56:55 +00:00
event_map::UserEvent::{InitUser, SignIn, SignOut, SignUp},
};
2021-12-08 09:33:22 +00:00
use lib_dispatch::prelude::{EventDispatcher, ModuleRequest, ToBytes};
2022-03-04 10:11:12 +00:00
use lib_infra::uuid;
use std::{fs, path::PathBuf, sync::Arc};
2021-07-16 15:18:12 +00:00
2021-12-08 09:33:22 +00:00
pub struct ViewTest {
pub sdk: FlowySDKTest,
pub workspace: Workspace,
pub app: App,
pub view: View,
}
impl ViewTest {
pub async fn new(sdk: &FlowySDKTest) -> Self {
2022-01-23 04:14:00 +00:00
let workspace = create_workspace(sdk, "Workspace", "").await;
open_workspace(sdk, &workspace.id).await;
let app = create_app(sdk, "App", "AppFlowy GitHub Project", &workspace.id).await;
let view = create_view(sdk, &app.id).await;
2021-12-08 09:33:22 +00:00
Self {
sdk: sdk.clone(),
workspace,
app,
view,
}
}
}
2022-01-22 10:48:43 +00:00
async fn create_workspace(sdk: &FlowySDKTest, name: &str, desc: &str) -> Workspace {
2022-02-24 13:49:18 +00:00
let request = CreateWorkspacePayload {
2021-12-08 09:33:22 +00:00
name: name.to_owned(),
desc: desc.to_owned(),
};
2022-01-22 10:48:43 +00:00
let workspace = FolderEventBuilder::new(sdk.clone())
2021-12-08 09:33:22 +00:00
.event(CreateWorkspace)
2022-02-24 13:49:18 +00:00
.payload(request)
2021-12-08 09:33:22 +00:00
.async_send()
.await
.parse::<Workspace>();
workspace
}
async fn open_workspace(sdk: &FlowySDKTest, workspace_id: &str) {
2022-02-24 13:49:18 +00:00
let payload = WorkspaceId {
value: Some(workspace_id.to_owned()),
2021-12-08 09:33:22 +00:00
};
2022-01-22 10:48:43 +00:00
let _ = FolderEventBuilder::new(sdk.clone())
2021-12-08 09:33:22 +00:00
.event(OpenWorkspace)
2022-02-24 13:49:18 +00:00
.payload(payload)
2021-12-08 09:33:22 +00:00
.async_send()
.await;
}
2022-01-22 10:48:43 +00:00
async fn create_app(sdk: &FlowySDKTest, name: &str, desc: &str, workspace_id: &str) -> App {
2022-02-24 13:49:18 +00:00
let create_app_request = CreateAppPayload {
2021-12-08 09:33:22 +00:00
workspace_id: workspace_id.to_owned(),
name: name.to_string(),
desc: desc.to_string(),
color_style: Default::default(),
};
2022-01-22 10:48:43 +00:00
let app = FolderEventBuilder::new(sdk.clone())
2021-12-08 09:33:22 +00:00
.event(CreateApp)
2022-02-24 13:49:18 +00:00
.payload(create_app_request)
2021-12-08 09:33:22 +00:00
.async_send()
.await
.parse::<App>();
app
}
2022-01-22 10:48:43 +00:00
async fn create_view(sdk: &FlowySDKTest, app_id: &str) -> View {
2022-02-24 13:49:18 +00:00
let request = CreateViewPayload {
2021-12-08 09:33:22 +00:00
belong_to_id: app_id.to_string(),
name: "View A".to_string(),
desc: "".to_string(),
thumbnail: Some("http://1.png".to_string()),
2022-03-12 01:30:13 +00:00
data_type: ViewDataType::TextBlock,
2022-02-28 14:38:53 +00:00
ext_data: "".to_string(),
2022-03-01 08:05:45 +00:00
plugin_type: 0,
2021-12-08 09:33:22 +00:00
};
2022-01-22 10:48:43 +00:00
let view = FolderEventBuilder::new(sdk.clone())
.event(CreateView)
2022-02-24 13:49:18 +00:00
.payload(request)
2021-12-08 09:33:22 +00:00
.async_send()
.await
2022-01-22 10:48:43 +00:00
.parse::<View>();
view
2021-12-08 09:33:22 +00:00
}
2021-07-16 15:18:12 +00:00
pub fn root_dir() -> String {
// https://doc.rust-lang.org/cargo/reference/environment-variables.html
2021-11-27 11:19:41 +00:00
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| "./".to_owned());
2021-07-16 15:18:12 +00:00
let mut path_buf = fs::canonicalize(&PathBuf::from(&manifest_dir)).unwrap();
path_buf.pop(); // rust-lib
path_buf.push("temp");
path_buf.push("flowy");
let root_dir = path_buf.to_str().unwrap().to_string();
if !std::path::Path::new(&root_dir).exists() {
std::fs::create_dir_all(&root_dir).unwrap();
}
root_dir
}
2022-01-23 04:14:00 +00:00
pub fn random_email() -> String {
2022-03-04 10:11:12 +00:00
format!("{}@appflowy.io", uuid())
2022-01-23 04:14:00 +00:00
}
2021-07-16 15:18:12 +00:00
2022-01-23 04:14:00 +00:00
pub fn login_email() -> String {
"annie2@appflowy.io".to_string()
}
2021-07-17 02:26:05 +00:00
2022-01-23 04:14:00 +00:00
pub fn login_password() -> String {
"HelloWorld!123".to_string()
}
2021-08-29 14:00:42 +00:00
pub struct SignUpContext {
2021-09-04 08:53:58 +00:00
pub user_profile: UserProfile,
pub password: String,
}
2021-12-04 03:26:17 +00:00
pub fn sign_up(dispatch: Arc<EventDispatcher>) -> SignUpContext {
let password = login_password();
2022-02-24 13:49:18 +00:00
let payload = SignUpPayload {
email: random_email(),
name: "app flowy".to_string(),
password: password.clone(),
}
.into_bytes()
.unwrap();
let request = ModuleRequest::new(SignUp).payload(payload);
2021-12-04 03:26:17 +00:00
let user_profile = EventDispatcher::sync_send(dispatch, request)
2021-12-14 10:04:51 +00:00
.parse::<UserProfile, FlowyError>()
.unwrap()
.unwrap();
SignUpContext { user_profile, password }
}
2021-12-04 03:26:17 +00:00
pub async fn async_sign_up(dispatch: Arc<EventDispatcher>) -> SignUpContext {
let password = login_password();
2022-02-24 13:49:18 +00:00
let payload = SignUpPayload {
email: random_email(),
name: "app flowy".to_string(),
password: password.clone(),
}
.into_bytes()
.unwrap();
let request = ModuleRequest::new(SignUp).payload(payload);
2021-12-04 03:26:17 +00:00
let user_profile = EventDispatcher::async_send(dispatch.clone(), request)
.await
2021-12-14 10:04:51 +00:00
.parse::<UserProfile, FlowyError>()
.unwrap()
.unwrap();
2021-09-11 06:26:30 +00:00
// let _ = create_default_workspace_if_need(dispatch.clone(), &user_profile.id);
2021-09-04 08:53:58 +00:00
SignUpContext { user_profile, password }
}
pub async fn init_user_setting(dispatch: Arc<EventDispatcher>) {
let request = ModuleRequest::new(InitUser);
let _ = EventDispatcher::async_send(dispatch.clone(), request).await;
}
#[allow(dead_code)]
2021-12-04 03:26:17 +00:00
fn sign_in(dispatch: Arc<EventDispatcher>) -> UserProfile {
2022-02-24 13:49:18 +00:00
let payload = SignInPayload {
email: login_email(),
password: login_password(),
2021-11-07 08:58:06 +00:00
name: "rust".to_owned(),
}
.into_bytes()
.unwrap();
let request = ModuleRequest::new(SignIn).payload(payload);
2021-12-04 03:26:17 +00:00
EventDispatcher::sync_send(dispatch, request)
2021-12-14 10:04:51 +00:00
.parse::<UserProfile, FlowyError>()
.unwrap()
2021-11-27 11:19:41 +00:00
.unwrap()
}
#[allow(dead_code)]
2022-01-23 04:14:00 +00:00
fn logout(dispatch: Arc<EventDispatcher>) {
let _ = EventDispatcher::sync_send(dispatch, ModuleRequest::new(SignOut));
}