Skip to content

minnieliu/cpsc310project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CPSC 310 Project Repository

This is the base project for CPSC310. You will extend this codebase for all of the deliverables in the project. Please keep your repository private.

The course webpage is your best resource for additional details about the project, AutoTest, and the specific requirements of each project deliverable. These resources will be frequently updated as the term progresses.

Configuring your environment

To start using this project you need to get your computer configured so you can build and execute the code. This process should be largely similar to the cpsc310starter repo used during the first lab. To do this, follow these steps; the specifics of each step (especially the first two) will vary based on which operating system your computer has:

  1. Install git (you should be able to execute git -v on the command line).

  2. Install Node, which will also install NPM (you should be able to execute node -v and npm -v the command line).

  3. Clone the project: git clone git@github.com:CS310-2016Fall/cpsc310project_teamXXX.git (where XXX is your team number). You can also clone the repo by visiting your project in Github and getting the clone target by clicking on the green button on your project repository.

  4. It is important that your project directory be called cpsc310project if you want to work with the public test suite we are providing. The easiest way to do this is to move it to the right name: mv cpsc310project_teamXXX cpsc310project (replacing XXX with your team number). NOTE: This is important or the public test suite will not work. The private test suite we run will do this automatically.

Project commands

Once your project is configured you need to further prepare the project's tooling and dependencies. In the cpsc310project folder:

  1. npm run clean

  2. npm run configure

  3. npm run build

If you use Windows; instead try:

  1. npm run cleanwin

  2. npm run configurewin

  3. npm run build

Executing the unit test suite

The sample project ships with some automated unit tests. These commands will execute the suites:

  • Test: npm run test (or npm test)
  • Test coverage: npm run cover (or npm run coverwin if you use Windows). HTML reports can be found: ./coverage/lcov-report/index.html

You can also run the tests as a Mocha target inside your favourite IDE (WebStorm and VSCode both work well and are free for academic use); some students are also using Atom and Cloud9 (although this will require a bit of fiddling since it runs in the cloud).

Executing the public test suite

Instructions for running the public suite will be included in your team's public suite repo.

Executing the private test suite

To invoke the private suite, add a @CPSC310Bot mention to any commit in your main branch in Github. Remember: these are rate limited so choose your commits wisely. Additional details can be found in the AutoTest documentation.

Starting the server

  • npm run start

You can then open the sample UI in your web browser by visiting http://localhost:4321. Alternatively, you can invoke the server using curl or some other tool that can hit your REST endpoints once the server is started.

Developing your project

If you are developing in Typescript you will have to re-compile the Typescript code. This can be done with npm run build to build the system and get it ready to execute. New unit tests can be written and added to /test; as long as the tests end in Spec.ts they will be executed automatically when you run npm run test.

Running and testing from an IDE

While these instructions are for WebStorm, other IDEs (e.g., VSCode, Atom, etc.) and editors (e.g., Sublime) should be similar, or will at least be compatible with the command line options described above.

To run or test the system in WebStorm you will need to configure run targets. To run the system go to the Run->Edit Configurations and tap on the + and then Node.js. Point the 'JavaScript file' argument to src/App.js. To run the system tests, go to the Run->Edit Configurations and tap on the + and then Mocha. Point the 'Test Directory' file argument to test/.

About

Base CPSC 310 project for Fall 2016.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published