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

212 lines
6.0 KiB
Rust
Raw Normal View History

use crate::prelude::*;
2022-07-19 06:11:29 +00:00
use flowy_folder::entities::WorkspaceIdPB;
use flowy_folder::{
2021-12-08 09:33:22 +00:00
entities::{
app::*,
view::*,
2022-07-19 06:11:29 +00:00
workspace::{CreateWorkspacePayloadPB, WorkspacePB},
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};
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,
2022-07-19 06:11:29 +00:00
pub workspace: WorkspacePB,
pub app: AppPB,
pub view: ViewPB,
2021-12-08 09:33:22 +00:00
}
impl ViewTest {
2022-03-12 13:06:15 +00:00
#[allow(dead_code)]
2022-03-15 11:00:28 +00:00
pub async fn new(sdk: &FlowySDKTest, data_type: ViewDataType, data: Vec<u8>) -> 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;
2022-03-15 03:07:18 +00:00
let view = create_view(sdk, &app.id, data_type, data).await;
2021-12-08 09:33:22 +00:00
Self {
sdk: sdk.clone(),
workspace,
app,
view,
}
}
2022-03-12 13:06:15 +00:00
2022-03-15 11:00:28 +00:00
pub async fn new_grid_view(sdk: &FlowySDKTest, data: Vec<u8>) -> Self {
2022-03-15 03:07:18 +00:00
Self::new(sdk, ViewDataType::Grid, data).await
2022-03-12 13:06:15 +00:00
}
pub async fn new_text_block_view(sdk: &FlowySDKTest) -> Self {
2022-03-15 11:00:28 +00:00
Self::new(sdk, ViewDataType::TextBlock, vec![]).await
2022-03-12 13:06:15 +00:00
}
2021-12-08 09:33:22 +00:00
}
2022-07-19 06:11:29 +00:00
async fn create_workspace(sdk: &FlowySDKTest, name: &str, desc: &str) -> WorkspacePB {
let request = CreateWorkspacePayloadPB {
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
2022-07-19 06:11:29 +00:00
.parse::<WorkspacePB>();
2021-12-08 09:33:22 +00:00
workspace
}
async fn open_workspace(sdk: &FlowySDKTest, workspace_id: &str) {
2022-07-19 06:11:29 +00:00
let payload = WorkspaceIdPB {
2022-02-24 13:49:18 +00:00
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-07-19 06:11:29 +00:00
async fn create_app(sdk: &FlowySDKTest, name: &str, desc: &str, workspace_id: &str) -> AppPB {
let create_app_request = CreateAppPayloadPB {
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
2022-07-19 06:11:29 +00:00
.parse::<AppPB>();
2021-12-08 09:33:22 +00:00
app
}
2022-07-19 06:11:29 +00:00
async fn create_view(sdk: &FlowySDKTest, app_id: &str, data_type: ViewDataType, data: Vec<u8>) -> ViewPB {
let request = CreateViewPayloadPB {
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 13:06:15 +00:00
data_type,
2022-03-01 08:05:45 +00:00
plugin_type: 0,
2022-03-15 03:07:18 +00:00
data,
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-07-19 06:11:29 +00:00
.parse::<ViewPB>();
2022-01-22 10:48:43 +00:00
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 {
format!("{}@appflowy.io", nanoid!(20))
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();
let email = random_email();
2022-02-24 13:49:18 +00:00
let payload = SignUpPayload {
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));
}