Recommendation Request Manager
Sprint Planning Doc for F24:
Before running the application for the first time,
you need to do the steps documented in docs/oauth.md
.
Otherwise, when you try to login for the first time, you will likely see an error such as:
mvn spring-boot:run
cd frontend
npm install # only on first run or when dependencies change
npm start
Then, the app should be available on http://localhost:8080
If it doesn't work at first, e.g. you have a blank page on http://localhost:8080, give it a minute and a few page refreshes. Sometimes it takes a moment for everything to settle in.
If you see the following on localhost, make sure that you also have the frontend code running in a separate window.
Failed to connect to the frontend server... On Dokku, be sure that PRODUCTION is defined. On localhost, open a second terminal window, cd into frontend and type: npm install; npm start";
See: /docs/dokku.md
To access the swagger API endpoints, use:
Or add /swagger-ui/index.html
to the URL of your dokku deployment.
For documentation on React Storybook, see:
On localhost:
target
mvn clean
the database is completely rebuilt from scratchOn Dokku, follow instructions for Dokku databases:
mvn test
FooTests.java
use: mvn test -Dtest=FooTests
Unit tests are any methods labelled with the @Test
annotation that are under the /src/test/java
hierarchy, and have file names that end in Test
or Tests
To run only the integration tests, use:
INTEGRATION=true mvn test-compile failsafe:integration-test
To run only the integration tests and see the tests run as you run them, use:
INTEGRATION=true HEADLESS=false mvn test-compile failsafe:integration-test
To run a particular integration test (e.g. only HomePageWebIT.java
) use -Dit.test=ClassName
, for example:
INTEGRATION=true mvn test-compile failsafe:integration-test -Dit.test=HomePageWebIT
or to see it run live:
INTEGRATION=true HEADLESS=false mvn test-compile failsafe:integration-test -Dit.test=HomePageWebIT
Integration tests are any methods labelled with @Test
annotation, that are under the /src/test/java
hierarchy, and have names starting with IT
(specifically capital I, capital T).
By convention, we are putting Integration tests (the ones that run with Playwright) under the package src/test/java/edu/ucsb/cs156/example/web
.
Unless you want a particular integration test to also be run when you type mvn test
, do not use the suffixes Test
or Tests
for the filename.
Note that while mvn test
is typically sufficient to run tests, we have found that if you haven't compiled the test code yet, running mvn failsafe:integration-test
may not actually run any of the tests.
This repo has support for partial pitest runs
For example, to run pitest on just one class, use:
mvn pitest:mutationCoverage -DtargetClasses=edu.ucsb.cs156.rec.controllers.RestaurantsController
To run pitest on just one package, use:
mvn pitest:mutationCoverage -DtargetClasses=edu.ucsb.cs156.rec.controllers.\*
To run full mutation test coverage, as usual, use:
mvn pitest:mutationCoverage