Skip to main content

Getting Started

General Flow

  • The User, Address, Order, and Order Item information to be migrated is obtained.
  • A test User, Address, Order, and Order Item are prepared each.
  • Knowledge of the User's password is required.
  • Test migration is performed for the User.
  • Test migration is performed for Address.
  • Test migration is performed for Order.
  • Test migration is performed for Order Item.
  • Once the tests are successful, the real migration is performed in the same order.

Migration Flow Control

  • The User, Address, Order, and Order Item should be migrated in sequence. The progress of each migration_id received with each request should be monitored. If error_count:1 is received, before proceeding to the next step, the formats of the data in the sent JSON should be checked.
  • After completing the Order Item migration, login should be performed with the credentials of the migrated User.
  • On the "My Addresses" page, the arrival of the address should be confirmed at /account/address/.
  • In the "My Past Orders" page, it should be verified that the migrated order is at /users/old-orders/, and the order items are at /users/old-orders/{pk}.
  • If the testing process is successful, real data should be migrated.
NOTE

Detailed logs of errors encountered during the migration process are not currently being maintained. Therefore, in the script you'll be writing, we recommend logging each request along with the sent data. This way, in case of any potential errors, you'll be able to debug using the data you've sent.