Skip to content

Latest commit

 

History

History
74 lines (53 loc) · 2.62 KB

File metadata and controls

74 lines (53 loc) · 2.62 KB

netlify-functions-ecommerce

This sample demonstrates using Mongoose to build an eCommerce shopping cart using Netlify Functions, which runs on AWS Lambda.

Other tools include:

  • Stripe for payment processing
  • Mocha and Sinon for testing

Setup

Make sure you have a local stargate instance running as described on the main page of this repo.

Running This Example

Setting up .env file to run against AstraDB

  1. Copy the .env.example file to .env and fill in the values for the environment variables.
  2. Set IS_ASTRA to true
  3. Set ASTRA_DB_ID to your AstraDB database ID
  4. Set ASTRA_DB_REGION to your AstraDB database region
  5. Set ASTRA_DB_KEYSPACE to your AstraDB keyspace
  6. Set ASTRA_DB_APPLICATION_TOKEN to your AstraDB application token
  7. Remove JSON_API_URL, JSON_API_AUTH_URL, JSON_API_AUTH_USERNAME, JSON_API_AUTH_PASSWORD.

Setting up .env file to run against JSON API

  1. Copy the .env.example file to .env and fill in the values for the environment variables.
  2. Set IS_ASTRA to false
  3. Set JSON_API_URL to http://127.0.0.1:8181/v1/ecommerce_test
  4. Set JSON_API_AUTH_URL to http://127.0.0.1:8081/v1/auth
  5. Set JSON_API_AUTH_USERNAME to cassandra
  6. Set JSON_API_AUTH_PASSWORD to cassandra
  7. Remove ASTRA_DB_ID, ASTRA_DB_REGION, ASTRA_DB_KEYSPACE, ASTRA_DB_APPLICATION_TOKEN

running the example

  1. Run npm install
  2. Run npm run seed
  3. Run npm run build to compile the frontend
  4. (Optional) set STRIPE_SECRET_KEY to a test Stripe API key in your .env file. This will allow you to enable Stripe checkout.
  5. Run npm start Run npm run test:smoke to run a smoke test against http://127.0.0.1:8888 that creates a cart using Axios.
  6. Visit http://127.0.0.1:8888/ to see the UI

Then run npm test.

$ npm test

> test
> mocha ./test/*.test.js

Using test


  Add to Cart
    ✔ Should create a cart and add a product to the cart
    ✔ Should find the cart and add to the cart
    ✔ Should find the cart and increase the quantity of the item(s) in the cart

  Checkout
    ✔ Should do a successful checkout run

  Get the cart given an id
    ✔ Should create a cart and then find the cart.

  Products
    ✔ Should get all products.

  Remove From Cart
    ✔ Should create a cart and then it should remove the entire item from it.
    ✔ Should create a cart and then it should reduce the quantity of an item from it.


  8 passing (112ms)