[PR #4204] [MERGED] More cloud test #6129

Closed
opened 2026-03-23 22:21:50 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4204
Author: @appflowy
Created: 12/23/2023
Status: Merged
Merged: 12/25/2023
Merged by: @appflowy

Base: mainHead: more_cloud_test


📝 Commits (10+)

📊 Changes

74 files changed (+776 additions, -450 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+25 -0)
frontend/appflowy_flutter/assets/test/workspaces/039_local.zip (+0 -0)
📝 frontend/appflowy_flutter/integration_test/appearance_settings_test.dart (+2 -2)
frontend/appflowy_flutter/integration_test/cloud/anon_user_continue_test.dart (+68 -0)
frontend/appflowy_flutter/integration_test/cloud/anon_user_to_cloud_test.dart (+74 -0)
📝 frontend/appflowy_flutter/integration_test/cloud/appflowy_cloud_auth_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/cloud/cloud_runner.dart (+5 -2)
📝 frontend/appflowy_flutter/integration_test/cloud/document_sync_test.dart (+3 -4)
📝 frontend/appflowy_flutter/integration_test/cloud/supabase_auth_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/cloud/user_setting_sync_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/hotkeys_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/settings/user_language_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/switch_folder_test.dart (+5 -5)
📝 frontend/appflowy_flutter/integration_test/util/auth_operation.dart (+11 -0)
📝 frontend/appflowy_flutter/integration_test/util/base.dart (+41 -32)
📝 frontend/appflowy_flutter/integration_test/util/dir.dart (+23 -0)
📝 frontend/appflowy_flutter/integration_test/util/expectation.dart (+9 -3)
📝 frontend/appflowy_flutter/integration_test/util/settings.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/startup/deps_resolver.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/startup/entry_point.dart (+1 -1)

...and 54 more files

📄 Description

  1. Tests
    a. migrate local user data to appflowy cloud
    b. start as anon user and then sign up with appflowy cloud
  2. Fix bugs: migrate user fav,trash,recent

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/4204 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 12/23/2023 **Status:** ✅ Merged **Merged:** 12/25/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `more_cloud_test` --- ### 📝 Commits (10+) - [`ed03fb6`](https://github.com/AppFlowy-IO/AppFlowy/commit/ed03fb6635182b1c1450d54ab9f827858f431319) test: add anon user test - [`6155275`](https://github.com/AppFlowy-IO/AppFlowy/commit/61552752cf9cdfdc0933c3505030664aebdd2774) chore: add to runner - [`eae8dba`](https://github.com/AppFlowy-IO/AppFlowy/commit/eae8dbac5ed59985ea07dc439f664af72afdcd25) test: fix - [`9bf55f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/9bf55f3e6420bdba0eb4b04963c933a4cfe97737) Merge branch 'main' into more_cloud_test - [`05de9e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/05de9e04f9372b9cbf2de3706902e2e8b1e0892e) test: fix - [`84ac995`](https://github.com/AppFlowy-IO/AppFlowy/commit/84ac995a0fd3eacf7e4c5f4f428b0a2312dba3b2) test: add tests - [`ee0d8e1`](https://github.com/AppFlowy-IO/AppFlowy/commit/ee0d8e1f388f90b83acce3ffca9c39e50b40a85f) Merge branch 'main' into more_cloud_test - [`820b740`](https://github.com/AppFlowy-IO/AppFlowy/commit/820b74036432aee1ffb26f6a1ccecf44f05b3a4e) chore: add test - [`ee67495`](https://github.com/AppFlowy-IO/AppFlowy/commit/ee67495120c1e231cebcd09c697fd5fd146c3b68) Merge branch 'main' into more_cloud_test - [`f290b2e`](https://github.com/AppFlowy-IO/AppFlowy/commit/f290b2ea0c20f7a99cd06c3a474895d18ceff2b0) chore: fix warn ### 📊 Changes **74 files changed** (+776 additions, -450 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+25 -0) ➖ `frontend/appflowy_flutter/assets/test/workspaces/039_local.zip` (+0 -0) 📝 `frontend/appflowy_flutter/integration_test/appearance_settings_test.dart` (+2 -2) ➕ `frontend/appflowy_flutter/integration_test/cloud/anon_user_continue_test.dart` (+68 -0) ➕ `frontend/appflowy_flutter/integration_test/cloud/anon_user_to_cloud_test.dart` (+74 -0) 📝 `frontend/appflowy_flutter/integration_test/cloud/appflowy_cloud_auth_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/cloud/cloud_runner.dart` (+5 -2) 📝 `frontend/appflowy_flutter/integration_test/cloud/document_sync_test.dart` (+3 -4) 📝 `frontend/appflowy_flutter/integration_test/cloud/supabase_auth_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/cloud/user_setting_sync_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/hotkeys_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/settings/user_language_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/switch_folder_test.dart` (+5 -5) 📝 `frontend/appflowy_flutter/integration_test/util/auth_operation.dart` (+11 -0) 📝 `frontend/appflowy_flutter/integration_test/util/base.dart` (+41 -32) 📝 `frontend/appflowy_flutter/integration_test/util/dir.dart` (+23 -0) 📝 `frontend/appflowy_flutter/integration_test/util/expectation.dart` (+9 -3) 📝 `frontend/appflowy_flutter/integration_test/util/settings.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/startup/deps_resolver.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/startup/entry_point.dart` (+1 -1) _...and 54 more files_ </details> ### 📄 Description 1. Tests a. migrate local user data to appflowy cloud b. start as anon user and then sign up with appflowy cloud 2. Fix bugs: migrate user fav,trash,recent #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:21:50 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6129
No description provided.