/bs-cap

Brightsquid Registration System

Primary LanguageJavaScript

Brightsquid Capstone

Registration and login system for Brightsquid Capstone.

Stack used: MongoDB, Express, React, Node.js

This project was bootstrapped with Create React App.

Available Scripts

In the project directory, you can run:

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.

The page will reload when you make changes.
You may also see any lint errors in the console.

How to Run

This is assuming that you've cloned the repository and that you have npm installed.

You will need to open 2 terminals for this. Starting with the backend, then following the frontend.

Backend

Steps

  1. Select one of the terminals
  2. Go into the \server folder of the repository
  3. Install all packages required using npm i
  4. Then run npm run dev for development server

Frontend

Steps

  1. Select the other terminal
  2. Install all packages required using npm i
  3. Then run npm start and the frontend will get displayed

Setup a Python Virtual Environment for Testing

Create a virtual environment (venv) to avoid cluttering the computer with unncessary packages.

Run the following to create the venv:

Bash:

source [venv name]/Scripts/activate

To exit:

deactivate

Package Management

Install your packages while in the venv.

To install the packages from a requirements.txt file:

python -m pip install -r requirements.txt

To save the packages in a requirements.txt file:

pip freeze > requirements.txt

Unit Tests

How To Run

  1. Open a terminal\
  2. Install Python bindings for Selenium: pip install selenium
  3. Open the project folder: cd brightsquid-capstone
  4. Go into the tests directory of the project folder
  5. To run all tests on each page, run: python .\registration_tests.py
  6. (Optional) Run only tests for Welcome Page: python .\registration_tests.py WelcomePageTests
  7. (Optional) Run only tests for User Registration Page: python .\registration_tests.py RegistrationPageTests
  8. (Optional) Run only tests for Practice Details Page: python .\registration_tests.py PracticeDetailsPageTests

Note: tests will run on Chrome. If you’re wanting to change the type of browser you wanted to run own (i.e. to Firefox), open registration_tests.py with a text editor, CTRL+F and search for webdriver.Chrome() and change it to webdriver.Firefox()

More information can be found here: https://selenium-python.readthedocs.io/installation.html