2022-01-08 10:21:13 +00:00
|
|
|
use crate::prelude::*;
|
2022-01-22 10:48:43 +00:00
|
|
|
|
2021-12-06 06:41:09 +00:00
|
|
|
use flowy_core::{
|
2021-12-08 09:33:22 +00:00
|
|
|
entities::{
|
|
|
|
app::*,
|
|
|
|
view::*,
|
2022-01-22 10:48:43 +00:00
|
|
|
workspace::{CreateWorkspaceRequest, QueryWorkspaceRequest, Workspace},
|
2021-12-08 09:33:22 +00:00
|
|
|
},
|
|
|
|
event::WorkspaceEvent::{CreateWorkspace, OpenWorkspace, *},
|
2021-12-06 06:41:09 +00:00
|
|
|
};
|
2021-09-04 08:12:48 +00:00
|
|
|
use flowy_user::{
|
2021-09-04 08:53:58 +00:00
|
|
|
entities::{SignInRequest, SignUpRequest, UserProfile},
|
2021-12-14 10:04:51 +00:00
|
|
|
errors::FlowyError,
|
2021-12-12 04:41:16 +00:00
|
|
|
event::UserEvent::{InitUser, SignIn, SignOut, SignUp},
|
2021-09-04 08:12:48 +00:00
|
|
|
};
|
2021-12-08 09:33:22 +00:00
|
|
|
use lib_dispatch::prelude::{EventDispatcher, ModuleRequest, ToBytes};
|
2021-12-28 16:34:00 +00:00
|
|
|
use lib_infra::uuid_string;
|
2022-01-08 10:21:13 +00:00
|
|
|
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 {
|
2021-12-08 09:33:22 +00:00
|
|
|
let request = CreateWorkspaceRequest {
|
|
|
|
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)
|
|
|
|
.request(request)
|
|
|
|
.async_send()
|
|
|
|
.await
|
|
|
|
.parse::<Workspace>();
|
|
|
|
workspace
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn open_workspace(sdk: &FlowySDKTest, workspace_id: &str) {
|
|
|
|
let request = QueryWorkspaceRequest {
|
|
|
|
workspace_id: Some(workspace_id.to_owned()),
|
|
|
|
};
|
2022-01-22 10:48:43 +00:00
|
|
|
let _ = FolderEventBuilder::new(sdk.clone())
|
2021-12-08 09:33:22 +00:00
|
|
|
.event(OpenWorkspace)
|
|
|
|
.request(request)
|
|
|
|
.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 {
|
2021-12-08 09:33:22 +00:00
|
|
|
let create_app_request = CreateAppRequest {
|
|
|
|
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)
|
|
|
|
.request(create_app_request)
|
|
|
|
.async_send()
|
|
|
|
.await
|
|
|
|
.parse::<App>();
|
|
|
|
app
|
|
|
|
}
|
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
async fn create_view(sdk: &FlowySDKTest, app_id: &str) -> View {
|
2021-12-08 09:33:22 +00:00
|
|
|
let request = CreateViewRequest {
|
|
|
|
belong_to_id: app_id.to_string(),
|
|
|
|
name: "View A".to_string(),
|
|
|
|
desc: "".to_string(),
|
|
|
|
thumbnail: Some("http://1.png".to_string()),
|
|
|
|
view_type: ViewType::Doc,
|
|
|
|
};
|
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
let view = FolderEventBuilder::new(sdk.clone())
|
|
|
|
.event(CreateView)
|
2021-12-08 09:33:22 +00:00
|
|
|
.request(request)
|
|
|
|
.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 {
|
|
|
|
format!("{}@appflowy.io", uuid_string())
|
|
|
|
}
|
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
|
|
|
|
2021-09-04 08:12:48 +00:00
|
|
|
pub struct SignUpContext {
|
2021-09-04 08:53:58 +00:00
|
|
|
pub user_profile: UserProfile,
|
2021-09-04 08:12:48 +00:00
|
|
|
pub password: String,
|
|
|
|
}
|
|
|
|
|
2021-12-04 03:26:17 +00:00
|
|
|
pub fn sign_up(dispatch: Arc<EventDispatcher>) -> SignUpContext {
|
2021-09-04 08:12:48 +00:00
|
|
|
let password = login_password();
|
|
|
|
let payload = SignUpRequest {
|
|
|
|
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>()
|
2021-09-04 08:12:48 +00:00
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
|
2021-09-28 07:29:29 +00:00
|
|
|
SignUpContext { user_profile, password }
|
|
|
|
}
|
|
|
|
|
2021-12-04 03:26:17 +00:00
|
|
|
pub async fn async_sign_up(dispatch: Arc<EventDispatcher>) -> SignUpContext {
|
2021-09-28 07:29:29 +00:00
|
|
|
let password = login_password();
|
|
|
|
let payload = SignUpRequest {
|
|
|
|
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)
|
2021-09-28 07:29:29 +00:00
|
|
|
.await
|
2021-12-14 10:04:51 +00:00
|
|
|
.parse::<UserProfile, FlowyError>()
|
2021-09-28 07:29:29 +00:00
|
|
|
.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 }
|
2021-09-04 08:12:48 +00:00
|
|
|
}
|
|
|
|
|
2021-12-12 04:41:16 +00:00
|
|
|
pub async fn init_user_setting(dispatch: Arc<EventDispatcher>) {
|
|
|
|
let request = ModuleRequest::new(InitUser);
|
|
|
|
let _ = EventDispatcher::async_send(dispatch.clone(), request).await;
|
|
|
|
}
|
|
|
|
|
2021-09-04 08:12:48 +00:00
|
|
|
#[allow(dead_code)]
|
2021-12-04 03:26:17 +00:00
|
|
|
fn sign_in(dispatch: Arc<EventDispatcher>) -> UserProfile {
|
2021-09-04 08:12:48 +00:00
|
|
|
let payload = SignInRequest {
|
|
|
|
email: login_email(),
|
|
|
|
password: login_password(),
|
2021-11-07 08:58:06 +00:00
|
|
|
name: "rust".to_owned(),
|
2021-09-04 08:12:48 +00:00
|
|
|
}
|
|
|
|
.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>()
|
2021-09-04 08:12:48 +00:00
|
|
|
.unwrap()
|
2021-11-27 11:19:41 +00:00
|
|
|
.unwrap()
|
2021-09-04 08:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
2022-01-23 04:14:00 +00:00
|
|
|
fn logout(dispatch: Arc<EventDispatcher>) {
|
|
|
|
let _ = EventDispatcher::sync_send(dispatch, ModuleRequest::new(SignOut));
|
|
|
|
}
|