Skip to content

Release Candidate v1.0.0-rc1

Pre-release
Pre-release
Compare
Choose a tag to compare
@YanzheL YanzheL released this 25 May 15:40
· 23 commits to master since this release
63edb39

Changelog

  • Finished front-end module.
  • Fixed return type error in stocks counting.

Usage

java "-Dspring.profiles.active=test" -jar api-gate-1.0.0-rc1.jar

It will listen on localhost:8981. No database configuration required.

Using the following command If you need to customize server listening port.

java "-Dspring.profiles.active=test" "-Dserver.port=YOUR_PORT" -jar api-gate-1.0.0-rc1.jar

Replace YOUR_PORT with an integer port number.

Initial Test Data

These data will be automatically loaded on start.

Users

  • 10 Sellers
    • Username test_user_seller_username_0 ~ test_user_seller_username_9

    • Password test_user_seller_PASSWORD_0 ~ test_user_seller_PASSWORD_9

    • Email test_user_seller_email_0@test.org ~ test_user_seller_email_9@test.org

  • 10 Customers
    • Username test_user_customer_username_0 ~ test_user_customer_username_9

    • Password test_user_customer_PASSWORD_0 ~ test_user_customer_PASSWORD_9

    • Email test_user_customer_email_0@test.org ~ test_user_customer_email_9@test.org

Products

  • 10 products for each seller.

Stocks

  • 10 Pending Stocks (inboundedAt == null) for each Product
    • TotalQuantity 100
  • 10 Inbounded Stocks (inboundedAt != null) for each Product
    • TotalQuantity 100

Addresses

  • id 1 ~ 10

  • OwnerId test_user_seller_username_0 ~ test_user_seller_username_9

  • id 11 ~ 20

  • OwnerId test_user_customer_username_0 ~ test_user_customer_username_9