Page MenuHomePhabricator

[sqlite] implement processing aux user store ops on worker
ClosedPublic

Authored by will on Mar 31 2024, 11:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 19, 10:36 PM
Unknown Object (File)
Sun, May 19, 10:36 PM
Unknown Object (File)
Sun, May 19, 10:36 PM
Unknown Object (File)
Sun, May 19, 10:36 PM
Unknown Object (File)
Apr 11 2024, 10:56 PM
Unknown Object (File)
Apr 11 2024, 2:39 AM
Unknown Object (File)
Apr 10 2024, 1:09 PM
Unknown Object (File)
Apr 9 2024, 2:14 PM
Subscribers

Details

Summary

Implements processing of aux user store ops by shared worker

Depends on D11510

Test Plan

Ran the following code and confirmed web database had expected results:

await sharedWorker.schedule({
  type: workerRequestMessageTypes.PROCESS_STORE_OPERATIONS,
  storeOperations: {
    auxUserStoreOperations: [
      {
        type: 'replace_aux_user_info',
        payload: {
          id: 'worker_test_A_id',
          auxUserInfo: 'worker_test_A_data',
        },
      },
      {
        type: 'replace_aux_user_info',
        payload: {
          id: 'worker_test_B_id',
          auxUserInfo: 'worker_test_B_update',
        },
      },
      {
        type: 'replace_aux_user_info',
        payload: {
          id: 'worker_test_A_id',
          auxUserInfo: 'worker_test_A_update',
        },
      },
      {
        type: 'remove_aux_user_infos',
        payload: {
          ids: ['worker_test_B_id'],
        },
      },
    ],
  },
});

const response = await sharedWorker.schedule({
  type: workerRequestMessageTypes.GET_DB_FILE,
});

Screenshot 2024-04-01 at 2.32.07 AM.png (427×709 px, 89 KB)

Diff Detail

Repository
rCOMM Comm
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

will edited the test plan for this revision. (Show Details)
will requested review of this revision.Mar 31 2024, 11:52 PM
This revision is now accepted and ready to land.Apr 2 2024, 1:35 AM