From 6c563828ded34d5fe552e4be1619d21fa024dec7 Mon Sep 17 00:00:00 2001 From: asteriskzie Date: Wed, 8 May 2024 20:50:02 +0700 Subject: [PATCH 1/2] [RED] Add test for sentiment analysis async --- .../service/SentimentAnalysisService.java | 1 + .../review/service/ReviewServiceTest.java | 19 +++++++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/main/java/snackscription/review/service/SentimentAnalysisService.java b/src/main/java/snackscription/review/service/SentimentAnalysisService.java index b9610a8..1ee68cf 100644 --- a/src/main/java/snackscription/review/service/SentimentAnalysisService.java +++ b/src/main/java/snackscription/review/service/SentimentAnalysisService.java @@ -2,6 +2,7 @@ public class SentimentAnalysisService { public String analyze(String reviewText) { + // do analysis return "positive"; } diff --git a/src/test/java/snackscription/review/service/ReviewServiceTest.java b/src/test/java/snackscription/review/service/ReviewServiceTest.java index 2187307..e2f397d 100644 --- a/src/test/java/snackscription/review/service/ReviewServiceTest.java +++ b/src/test/java/snackscription/review/service/ReviewServiceTest.java @@ -10,6 +10,7 @@ import java.util.ArrayList; import java.util.List; import java.util.Optional; +import java.util.concurrent.CompletableFuture; import javax.naming.spi.DirStateFactory.Result; import javax.swing.text.html.Option; @@ -26,10 +27,13 @@ import snackscription.review.model.Review; import snackscription.review.model.ReviewState; import snackscription.review.repository.ReviewRepository; +import snackscription.review.service.SentimentAnalysisService; @ExtendWith(MockitoExtension.class) public class ReviewServiceTest { - + + @Mock + SentimentAnalysisService sentimentAnalysisService; @Mock ReviewRepository reviewRepo; @@ -58,6 +62,7 @@ public class ReviewServiceTest { @BeforeEach public void setUp() { reviewService = new ReviewService(reviewRepo); + sentimentAnalysisService = new SentimentAnalysisService(); Review review1 = new Review(5, "I love it", "user_123", "subsbox_123"); Review review2 = new Review(1, "I hate it", "user_124", "subsbox_123"); @@ -243,8 +248,18 @@ public void assertEqualReview(Review review1, Review review2) { } @Test - public void analyzeSentimentAsyncTest() { + public void testAnalyzeSentimentAsyncTest() { + String reviewText = "This is a great product!"; + String expectedSentiment = "positive"; + + when(sentimentAnalysisService.analyze(reviewText)).thenReturn(expectedSentiment); + + CompletableFuture sentimentFuture = reviewService.analyzeSentimentAsync(reviewText); + + String actualSentiment = sentimentFuture.join(); + verify(sentimentAnalysisService).analyze(reviewText); + assertEquals(expectedSentiment, actualSentiment); } } From 323c56256c61189d1cdd68df336090a0b1d1a04b Mon Sep 17 00:00:00 2001 From: asteriskzie Date: Sun, 26 May 2024 20:37:06 +0700 Subject: [PATCH 2/2] merge branch 'dev' into 'async' --- .github/workflows/cd.yml | 22 +- .github/workflows/ci.yml | 13 +- .monitoring/docker-compose.yml | 19 ++ .../provisioning/datasources/datasources.yml | 7 + .monitoring/prometheus/prometheus.yml | 11 + application.yml | 5 + build.gradle.kts | 16 +- deployment.yaml | 22 ++ gradle/gradle.properties | 5 + gradlew | 2 +- service.yaml | 11 + .../review/ReviewAppConfig.java | 14 + .../review/ReviewApplication.java | 18 +- .../controller/ReviewAdminController.java | 49 +++ .../review/controller/ReviewController.java | 114 ++----- .../snackscription/review/model/Review.java | 34 +-- .../snackscription/review/model/ReviewId.java | 25 ++ .../review/repository/ReviewRepository.java | 24 +- .../review/service/ReviewService.java | 107 +------ .../review/service/ReviewServiceImpl.java | 117 ++++++++ .../service/SentimentAnalysisService.java | 5 + src/main/resources/application-dev.properties | 2 +- src/main/resources/application.properties | 4 +- .../controller/ReviewAdminControllerTest.java | 149 ++++++++++ .../controller/ReviewControllerTest.java | 280 ++++-------------- .../review/model/ReviewTest.java | 6 +- .../repository/ReviewRepositoryTest.java | 36 ++- .../review/service/ReviewServiceTest.java | 234 +++++++-------- 28 files changed, 730 insertions(+), 621 deletions(-) create mode 100644 .monitoring/docker-compose.yml create mode 100644 .monitoring/grafana/provisioning/datasources/datasources.yml create mode 100644 .monitoring/prometheus/prometheus.yml create mode 100644 application.yml create mode 100644 deployment.yaml create mode 100644 gradle/gradle.properties create mode 100644 service.yaml create mode 100644 src/main/java/snackscription/review/ReviewAppConfig.java create mode 100644 src/main/java/snackscription/review/controller/ReviewAdminController.java create mode 100644 src/main/java/snackscription/review/model/ReviewId.java create mode 100644 src/main/java/snackscription/review/service/ReviewServiceImpl.java create mode 100644 src/test/java/snackscription/review/controller/ReviewAdminControllerTest.java diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1153188..30e9471 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -45,16 +45,6 @@ jobs: name: Test runs-on: ubuntu-latest needs: build - services: - postgres: - image: postgres:latest - env: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: snackscription_review - ports: - - 5432:5432 - options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Checkout Repository uses: actions/checkout@v4 @@ -80,12 +70,24 @@ jobs: ./gradlew check --info --stacktrace ./gradlew test ./gradlew jacocoTestReport + env: + PRODUCTION: test # (Optional) Add steps for generating coverage report and other post-test tasks publish: name: Publish Docker Image runs-on: ubuntu-latest needs: test + services: + postgres: + image: postgres:latest + env: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: snackscription_review + ports: + - 5432:5432 + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Checkout Repository uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dbb8fa..050ab36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,12 +3,7 @@ name: Java CI Pipeline on: push: branches: - - main - - dev - pull_request: - branches: - - main - - dev + - "**" workflow_dispatch: jobs: @@ -70,8 +65,10 @@ jobs: distribution: "temurin" java-version: "21" cache: "gradle" + - name: Make gradlew executable run: chmod +x ./gradlew + - name: Cache Gradle dependencies uses: actions/cache@v4 with: @@ -85,4 +82,6 @@ jobs: ./gradlew check --info --stacktrace ./gradlew test ./gradlew jacocoTestReport - # (Optional) Add steps for generating coverage report and other post-test tasks + env: + PRODUCTION: test + # (Optional) Add steps for generating coverage report and other post-test tasks \ No newline at end of file diff --git a/.monitoring/docker-compose.yml b/.monitoring/docker-compose.yml new file mode 100644 index 0000000..87b2c31 --- /dev/null +++ b/.monitoring/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3.7' + +services: + prometheus: + image: prom/prometheus:v2.44.0 + container_name: prometheus + ports: + - "9090:9090" + volumes: + - ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml + + grafana: + image: grafana/grafana:9.5.2 + container_name: grafana + ports: + - "3000:3000" + restart: unless-stopped + volumes: + - ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources diff --git a/.monitoring/grafana/provisioning/datasources/datasources.yml b/.monitoring/grafana/provisioning/datasources/datasources.yml new file mode 100644 index 0000000..8d9f9d8 --- /dev/null +++ b/.monitoring/grafana/provisioning/datasources/datasources.yml @@ -0,0 +1,7 @@ +apiVersion: 1 +datasources: + - name: Prometheus + type: prometheus + access: proxy + url: http://prometheus:9090 + isDefault: true \ No newline at end of file diff --git a/.monitoring/prometheus/prometheus.yml b/.monitoring/prometheus/prometheus.yml new file mode 100644 index 0000000..f454fff --- /dev/null +++ b/.monitoring/prometheus/prometheus.yml @@ -0,0 +1,11 @@ +scrape_configs: + - job_name: 'Snackscription Metrics' + metrics_path: '/actuator/prometheus' + scrape_interval: 3s + static_configs: + - targets: ['host.docker.internal:8080'] + labels: + application: 'Snackscription Review' + - targets: ['34.124.152.90'] + labels: + application: 'Snackscription Review (deployed)' \ No newline at end of file diff --git a/application.yml b/application.yml new file mode 100644 index 0000000..3feefab --- /dev/null +++ b/application.yml @@ -0,0 +1,5 @@ +management: + endpoints: + web: + exposure: + include: [ "prometheus" ] diff --git a/build.gradle.kts b/build.gradle.kts index c18a996..20bcb2e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,6 +3,7 @@ plugins { id("org.springframework.boot") version "3.2.5" id("io.spring.dependency-management") version "1.1.4" jacoco + id("org.sonarqube") version "4.4.1.3373" } group = "snackscription" @@ -12,6 +13,7 @@ java { sourceCompatibility = JavaVersion.VERSION_21 } + configurations { compileOnly { extendsFrom(configurations.annotationProcessor.get()) @@ -26,6 +28,9 @@ dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-thymeleaf") implementation("org.springframework.boot:spring-boot-starter-web") + implementation("org.springframework.boot:spring-boot-starter-actuator") + implementation("io.micrometer:micrometer-registry-prometheus") + implementation("io.micrometer:micrometer-core") compileOnly("org.projectlombok:lombok") developmentOnly("org.springframework.boot:spring-boot-devtools") runtimeOnly("org.postgresql:postgresql") @@ -48,8 +53,17 @@ tasks.jacocoTestReport { })) dependsOn(tasks.test) reports { - xml.required.set(false) + xml.required.set(true) + html.required.set(true) csv.required.set(false) html.outputLocation.set(layout.buildDirectory.dir("jacocoHtml")) } +} + +sonar { + properties { + property("sonar.projectKey","ADPRO-C11_snackscription-review") + property("sonar.organization", "adpro-c11") + property("sonar.host.url", "https://sonarcloud.io") + } } \ No newline at end of file diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 0000000..a4401a5 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,22 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: snackscription-review-deployment +spec: + replicas: 3 + selector: + matchLabels: + app: snackscription-review + template: + metadata: + labels: + app: snackscription-review + spec: + containers: + - name: snackscription-review + image: asteriskzie/snackscription-review:latest + ports: + - containerPort: 8080 + env: + - name: PRODUCTION + value: prod \ No newline at end of file diff --git a/gradle/gradle.properties b/gradle/gradle.properties new file mode 100644 index 0000000..2b4c21a --- /dev/null +++ b/gradle/gradle.properties @@ -0,0 +1,5 @@ +systemProp.sonar.host.url=https://sonarcloud.io + +# Token generated from an account with 'Execute analysis' permission. +# It can also be set with the environment variable SONAR_TOKEN. +systemProp.sonar.token=${SONAR_TOKEN} \ No newline at end of file diff --git a/gradlew b/gradlew index 1aa94a4..e7c6edb 100755 --- a/gradlew +++ b/gradlew @@ -205,7 +205,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. -# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# * For example: A author cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line. set -- \ diff --git a/service.yaml b/service.yaml new file mode 100644 index 0000000..25b65be --- /dev/null +++ b/service.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: snackscription-review-service +spec: + type: LoadBalancer + ports: + - port: 80 + targetPort: 8080 + selector: + app: snackscription-review diff --git a/src/main/java/snackscription/review/ReviewAppConfig.java b/src/main/java/snackscription/review/ReviewAppConfig.java new file mode 100644 index 0000000..e3519e7 --- /dev/null +++ b/src/main/java/snackscription/review/ReviewAppConfig.java @@ -0,0 +1,14 @@ +package snackscription.review; + +import io.micrometer.core.instrument.MeterRegistry; +import io.micrometer.core.instrument.composite.CompositeMeterRegistry; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +@Configuration +public class ReviewAppConfig { + @Bean + public MeterRegistry getMeterRegistry() { + return new CompositeMeterRegistry(); + } +} diff --git a/src/main/java/snackscription/review/ReviewApplication.java b/src/main/java/snackscription/review/ReviewApplication.java index 4898e1d..ec64e1c 100644 --- a/src/main/java/snackscription/review/ReviewApplication.java +++ b/src/main/java/snackscription/review/ReviewApplication.java @@ -2,28 +2,14 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; -import org.springframework.scheduling.annotation.EnableAsync; -import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; -import java.util.concurrent.Executor; - -@EnableAsync @SpringBootApplication public class ReviewApplication { public static void main(String[] args) { SpringApplication.run(ReviewApplication.class, args); - } - @Bean - public Executor taskExecutor () { - ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); - executor.setCorePoolSize(1); - executor.setMaxPoolSize(1); - executor.setQueueCapacity(500); - executor.setThreadNamePrefix("GithubLookup-"); - executor.initialize(); - return executor; + } + } diff --git a/src/main/java/snackscription/review/controller/ReviewAdminController.java b/src/main/java/snackscription/review/controller/ReviewAdminController.java new file mode 100644 index 0000000..25b7d0b --- /dev/null +++ b/src/main/java/snackscription/review/controller/ReviewAdminController.java @@ -0,0 +1,49 @@ +package snackscription.review.controller; + +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.*; +import snackscription.review.model.Review; +import snackscription.review.service.ReviewServiceImpl; + +import java.util.List; + +@CrossOrigin +@RestController +@RequestMapping("/admin") +public class ReviewAdminController { + private ReviewServiceImpl reviewService; + + public ReviewAdminController(ReviewServiceImpl reviewService) { + this.reviewService = reviewService; + } + + @PutMapping("/subscription-boxes/{subsbox}/users/{user}/approve") + public ResponseEntity approveReview(@PathVariable String subsbox, @PathVariable String user) { + try { + Review review = reviewService.approveReview(subsbox, user); + return new ResponseEntity<>(review, HttpStatus.OK); + } catch (Exception e) { + return new ResponseEntity<>(HttpStatus.BAD_REQUEST); + } + } + + @PutMapping("/subscription-boxes/{subsbox}/users/{user}/reject") + public ResponseEntity rejectReview(@PathVariable String subsbox, @PathVariable String user) { + try { + Review review = reviewService.rejectReview(subsbox, user); + return new ResponseEntity<>(review, HttpStatus.OK); + } catch (Exception e) { + return new ResponseEntity<>(HttpStatus.BAD_REQUEST); + } + } + + @GetMapping("/subscription-boxes/{subsbox}/reviews") + public ResponseEntity> getSubsboxReviews( + @PathVariable String subsbox, + @RequestParam(required = false) String state) throws Exception { + List reviews = reviewService.getSubsboxReview(subsbox, state); + return ResponseEntity.ok().body(reviews); + } + +} diff --git a/src/main/java/snackscription/review/controller/ReviewController.java b/src/main/java/snackscription/review/controller/ReviewController.java index 4b89ab2..d04bdd2 100644 --- a/src/main/java/snackscription/review/controller/ReviewController.java +++ b/src/main/java/snackscription/review/controller/ReviewController.java @@ -1,39 +1,26 @@ package snackscription.review.controller; -import java.util.ArrayList; import java.util.List; import java.util.Map; -import org.apache.catalina.connector.Response; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.autoconfigure.web.ServerProperties.Tomcat.Resource; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; + import snackscription.review.model.Review; -import snackscription.review.repository.ReviewRepository; import snackscription.review.service.ReviewService; +import snackscription.review.service.ReviewServiceImpl; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.PutMapping; - - - - +@CrossOrigin @RestController -@RequestMapping("/") +@RequestMapping("") public class ReviewController { - - private ReviewService reviewService; + public static final String BODY_AUTHOR = "author"; + public static final String BODY_CONTENT = "content"; + public static final String BODY_RATING = "rating"; + public ReviewController(ReviewService reviewService) { this.reviewService = reviewService; } @@ -43,104 +30,63 @@ public ResponseEntity reviewPage() { return ResponseEntity.ok().body("Welcome to the review service!"); } - @PostMapping("/api/subscription-boxes/{subscriptionBoxId}") - public ResponseEntity createSubscriptionBoxReview(@RequestBody Map body, @PathVariable String subscriptionBoxId) { - + @PostMapping("/subscription-boxes/{subsbox}/users/self") + public ResponseEntity createSelfSubsboxReview(@RequestBody Map body, @PathVariable String subsbox) { try { - String userId = body.get("userId"); - int rating = Integer.parseInt(body.get("rating")); - String content = body.get("content"); + String author = body.get(BODY_AUTHOR); + int rating = Integer.parseInt(body.get(BODY_RATING)); + String content = body.get(BODY_CONTENT); - Review review = reviewService.createReview(rating, content, subscriptionBoxId, userId); + Review review = reviewService.createReview(rating, content, subsbox, author); return new ResponseEntity<>(review, HttpStatus.CREATED); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.BAD_REQUEST); } } - @GetMapping("/api/subscription-boxes/{subscriptionBoxId}") - public ResponseEntity> getAllPublicSubscriptionBoxReview(@PathVariable String subscriptionBoxId) { + @GetMapping("/subscription-boxes/{subsbox}") + public ResponseEntity> getPublicSubsboxReview(@PathVariable String subsbox) { try { - List reviews = reviewService.getAllSubscriptionBoxReview(subscriptionBoxId, "APPROVED"); + List reviews = reviewService.getSubsboxReview(subsbox, "APPROVED"); return new ResponseEntity<>(reviews, HttpStatus.OK); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.BAD_REQUEST); } } - @GetMapping("/api/subscription-boxes/{subscriptionBoxId}/users/self") - public ResponseEntity getSelfSubscriptionBoxReview(@RequestBody Map body, @PathVariable String subscriptionBoxId) { + @GetMapping("/subscription-boxes/{subsbox}/users/self") + public ResponseEntity getSelfSubsboxReview(@RequestBody Map body, @PathVariable String subsbox) { try { - String userId = body.get("userId"); - Review review = reviewService.getReview(subscriptionBoxId, userId); + String author = body.get("author"); // TODO: nanti pakai JWT token untuk ambil sendernya + Review review = reviewService.getReview(subsbox, author); return new ResponseEntity<>(review, HttpStatus.OK); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.BAD_REQUEST); } } - @PutMapping("/api/subscription-boxes/{subscriptionBoxId}/users/self") - public ResponseEntity editSelfSubscriptionBoxId(@RequestBody Map body, @PathVariable String subscriptionBoxId) { + @PutMapping("/subscription-boxes/{subsbox}/users/self") + public ResponseEntity editSelfReview(@RequestBody Map body, @PathVariable String subsbox) { try { - String userId = body.get("userId"); + String author = body.get("author"); // TODO: nanti pakai JWT token untuk ambil sendernya int rating = Integer.parseInt(body.get("rating")); String content = body.get("content"); - Review review = reviewService.editReview(rating, content, subscriptionBoxId, userId); + Review review = reviewService.editReview(rating, content, subsbox, author); return new ResponseEntity<>(review, HttpStatus.OK); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.BAD_REQUEST); } } - @DeleteMapping("/api/subscription-boxes/{subscriptionBoxId}/users/self") - public ResponseEntity deleteSelfSubscriptionBoxReview(@RequestBody Map body, @PathVariable String subscriptionBoxId) { + @DeleteMapping("/subscription-boxes/{subsbox}/users/self") + public ResponseEntity deleteSelfReview(@RequestBody Map body, @PathVariable String subsbox) { try { - String userId = body.get("userId"); - reviewService.deleteReview(subscriptionBoxId, userId); + String author = body.get("author"); // TODO: nanti pakai JWT token untuk ambil sendernya + reviewService.deleteReview(subsbox, author); return new ResponseEntity<>(HttpStatus.NO_CONTENT); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.BAD_REQUEST); } } - - @DeleteMapping("/api/subscription-boxes/{subscriptionBoxId}/users/{userId}") - public ResponseEntity deleteSubscriptionBoxReview(@PathVariable String subscriptionBoxId, @PathVariable String userId) { - try { - reviewService.deleteReview(subscriptionBoxId, userId); - return new ResponseEntity<>(HttpStatus.NO_CONTENT); - } catch (Exception e) { - return new ResponseEntity<>(HttpStatus.BAD_REQUEST); - } - } - - @GetMapping("/api/reviews/{subsboxId}") - public List getBySubscriptionBoxId(@PathVariable String subsboxId) throws Exception { - return reviewService.getAllSubscriptionBoxReview(subsboxId, null); - } - - @GetMapping("/api/reviews/{reviewId}") - public Review getById(@PathVariable String reviewId) throws Exception { - return reviewService.findById(reviewId); - } - - @PutMapping("/api/reviews/{reviewId}/approve") - public ResponseEntity approveReview(@PathVariable String reviewId) { - try { - Review review = reviewService.approveReview(reviewId); - return new ResponseEntity<>(review, HttpStatus.OK); - } catch (Exception e) { - return new ResponseEntity<>(HttpStatus.BAD_REQUEST); - } - } - - @PutMapping("/api/reviews/{reviewId}/reject") - public ResponseEntity rejectReview(@PathVariable String reviewId) { - try { - Review review = reviewService.rejectReview(reviewId); - return new ResponseEntity<>(review, HttpStatus.OK); - } catch (Exception e) { - return new ResponseEntity<>(HttpStatus.BAD_REQUEST); - } - } } \ No newline at end of file diff --git a/src/main/java/snackscription/review/model/Review.java b/src/main/java/snackscription/review/model/Review.java index 572d7a5..0ef1c69 100644 --- a/src/main/java/snackscription/review/model/Review.java +++ b/src/main/java/snackscription/review/model/Review.java @@ -1,19 +1,15 @@ package snackscription.review.model; -import lombok.Getter; -import lombok.Setter; - -import java.util.UUID; +import lombok.Data; import jakarta.persistence.*; -@Getter -@Setter +@Data @Entity -@Table(name = "review") +@Table public class Review { - @Id - private String id; + @EmbeddedId + private ReviewId id; @Column(name = "rating", nullable = false) private int rating; @@ -24,22 +20,14 @@ public class Review { @Column(name = "state", nullable = false) private ReviewState state; - @Column(name="user_id", nullable = false) - private String userId; - - @Column(name="subsbox_id", nullable = false) - private String subscriptionBoxId; - public Review() { } - public Review(int rating, String content, String userId, String subscriptionBoxId) { - this.id = UUID.randomUUID().toString(); + public Review(int rating, String content, String subsbox, String user) { + this.id = new ReviewId(subsbox, user); this.rating = rating; this.content = content; this.state = ReviewState.PENDING; - this.userId = userId; - this.subscriptionBoxId = subscriptionBoxId; } public void editReview(int rating, String content) { @@ -61,4 +49,12 @@ public void approve() { public void reject() { this.state.reject(this); } + + public String getSubsbox() { + return this.id.getSubsbox(); + } + + public String getAuthor() { + return this.id.getAuthor(); + } } \ No newline at end of file diff --git a/src/main/java/snackscription/review/model/ReviewId.java b/src/main/java/snackscription/review/model/ReviewId.java new file mode 100644 index 0000000..d1656fb --- /dev/null +++ b/src/main/java/snackscription/review/model/ReviewId.java @@ -0,0 +1,25 @@ +package snackscription.review.model; + +import jakarta.persistence.Column; +import jakarta.persistence.Embeddable; +import lombok.Data; + +import java.io.Serializable; + +@Data +@Embeddable +public class ReviewId implements Serializable { + @Column(name = "subsbox", nullable = false) + private String subsbox; + + @Column(name = "author", nullable = false) + private String author; + + public ReviewId(String subsbox, String author) { + this.subsbox = subsbox; + this.author = author; + } + public ReviewId() { + + } +} diff --git a/src/main/java/snackscription/review/repository/ReviewRepository.java b/src/main/java/snackscription/review/repository/ReviewRepository.java index bb448bf..f0f025e 100644 --- a/src/main/java/snackscription/review/repository/ReviewRepository.java +++ b/src/main/java/snackscription/review/repository/ReviewRepository.java @@ -2,14 +2,24 @@ import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; -import org.springframework.data.jpa.repository.Query; -import org.springframework.data.repository.CrudRepository; + +import io.micrometer.common.lang.Nullable; import snackscription.review.model.Review; +import snackscription.review.model.ReviewId; import snackscription.review.model.ReviewState; -public interface ReviewRepository extends JpaRepository { - List findBySubscriptionBoxId(String subsboxId); - List findBySubscriptionBoxIdAndState(String subsboxId, ReviewState state); - Review findBySubscriptionBoxIdAndUserId(String subsboxId, String userId); - void deleteBySubscriptionBoxIdAndUserId(String subsboxId, String userId); +public interface ReviewRepository extends JpaRepository { + @Nullable + List findByIdSubsbox(String subsbox); + + @Nullable + List findByIdAuthor(String author); + + @Nullable + List findByIdSubsboxAndState(String subsbox, ReviewState state); + + @Nullable + Review findByIdSubsboxAndIdAuthor(String subsbox, String author); + + void deleteByIdSubsboxAndIdAuthor(String subsbox, String author); } \ No newline at end of file diff --git a/src/main/java/snackscription/review/service/ReviewService.java b/src/main/java/snackscription/review/service/ReviewService.java index 266d3ba..aee0263 100644 --- a/src/main/java/snackscription/review/service/ReviewService.java +++ b/src/main/java/snackscription/review/service/ReviewService.java @@ -1,102 +1,15 @@ package snackscription.review.service; -import java.util.List; -import java.util.Optional; -import java.util.concurrent.CompletableFuture; - -import org.springframework.scheduling.annotation.Async; -import org.springframework.stereotype.Service; - -import snackscription.review.exception.InvalidStateException; -import snackscription.review.exception.ReviewNotFoundException; import snackscription.review.model.Review; -import snackscription.review.model.ReviewState; -import snackscription.review.repository.ReviewRepository; - -@Service -public class ReviewService { - private ReviewRepository reviewRepository; - private SentimentAnalysisService sentimentAnalysisService; - - public ReviewService (ReviewRepository reviewRepository) { - this.reviewRepository = reviewRepository; - } - - public Review findById(String reviewId) throws ReviewNotFoundException { - Optional oReview = reviewRepository.findById(reviewId); - - if (oReview.isEmpty()) { - throw new ReviewNotFoundException(); - } - - return oReview.get(); - } - - public List findBySubscriptionBoxId(String subscriptionBoxId) { - return reviewRepository.findBySubscriptionBoxId(subscriptionBoxId); - } - - public Review createReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception { - Review review = new Review(rating, content, userId, subscriptionBoxId); - reviewRepository.save(review); - return review; - } - - public List getAllSubscriptionBoxReview(String subscriptionBoxId, String state) throws Exception { - if (state == null) { - return reviewRepository.findBySubscriptionBoxId(subscriptionBoxId); - } else { - state = state.toUpperCase(); - ReviewState reviewState = Enum.valueOf(ReviewState.class, state); - if (reviewState == null) { - throw new InvalidStateException(); - } - return reviewRepository.findBySubscriptionBoxIdAndState(subscriptionBoxId, reviewState); - } - } - - public Review getReview(String subscriptionBoxId, String userId) throws Exception { - return reviewRepository.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId); - } - - public Review editReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception { - Review review = reviewRepository.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId); - - if (review == null) { - throw new ReviewNotFoundException(); - } - - review.setRating(rating); - review.setContent(content); - - return reviewRepository.save(review); - } - - public void deleteReview(String subscriptionBoxId, String userId) throws Exception { - Review review = reviewRepository.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId); - - if (review == null) { - throw new ReviewNotFoundException(); - } - - reviewRepository.delete(review); - } - - public Review approveReview(String reviewId) throws Exception { - Review review = findById(reviewId); - review.approve(); - return reviewRepository.save(review); - } - - public Review rejectReview(String reviewId) throws Exception { - Review review = findById(reviewId); - review.reject(); - return reviewRepository.save(review); - } +import java.util.List; - @Async - public CompletableFuture analyzeSentimentAsync(String reviewText) { - String sentiment = sentimentAnalysisService.analyze(reviewText); - return CompletableFuture.completedFuture(sentiment); - } +public interface ReviewService { + public boolean reviewExist(String subsbox, String user); + public Review createReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception; + public Review getReview(String subsbox, String user) throws Exception; + public List getSubsboxReview(String subscriptionBoxId, String state) throws Exception; + public Review editReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception; + public void deleteReview(String subsbox, String user) throws Exception; + public Review approveReview(String subsbox, String user) throws Exception; + public Review rejectReview(String subsbox, String user) throws Exception; } diff --git a/src/main/java/snackscription/review/service/ReviewServiceImpl.java b/src/main/java/snackscription/review/service/ReviewServiceImpl.java new file mode 100644 index 0000000..34dd81c --- /dev/null +++ b/src/main/java/snackscription/review/service/ReviewServiceImpl.java @@ -0,0 +1,117 @@ +package snackscription.review.service; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.atomic.AtomicInteger; + +import io.micrometer.core.instrument.composite.CompositeMeterRegistry; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; + +import snackscription.review.exception.InvalidStateException; +import snackscription.review.exception.ReviewNotFoundException; +import snackscription.review.model.Review; +import snackscription.review.model.ReviewId; +import snackscription.review.model.ReviewState; +import snackscription.review.repository.ReviewRepository; + +@Service +@Component +public class ReviewServiceImpl implements ReviewService { + private final ReviewRepository reviewRepository; + private final SentimentAnalysisService sentimentAnalysisService; + + public ReviewServiceImpl (ReviewRepository reviewRepository, SentimentAnalysisService sentimentAnalysisService) { + this.reviewRepository = reviewRepository; + this.sentimentAnalysisService = sentimentAnalysisService; + } + + public boolean reviewExist(String subsbox, String user) { + return reviewRepository.existsById(new ReviewId(subsbox, user)); + } + + public Review createReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception { + if (reviewExist(subscriptionBoxId, userId)) { + throw new Exception("User has made a review for this subscription box."); + } + + if (rating < 1 || rating > 5) { + throw new Exception("Rating out of range"); + } + + Review review = new Review(rating, content, subscriptionBoxId, userId); + reviewRepository.save(review); + return review; + } + + public Review getReview(String subsbox, String user) throws Exception { + Optional oreview = reviewRepository.findById(new ReviewId(subsbox, user)); + if (oreview.isEmpty()) { + throw new ReviewNotFoundException(); + } + return oreview.get(); + } + + public List getSubsboxReview(String subscriptionBoxId, String state) throws Exception { + List result; + if (state == null) { + result = reviewRepository.findByIdSubsbox(subscriptionBoxId); + } else { + state = state.toUpperCase(); + if (!state.equals("PENDING") && !state.equals("APPROVED") && !state.equals("REJECTED")) { + throw new InvalidStateException(); + } + ReviewState reviewState = ReviewState.valueOf(state); + result = reviewRepository.findByIdSubsboxAndState(subscriptionBoxId, reviewState); + } + + if (result == null) { + result = new ArrayList<>(); + } + return result; + } + + public Review editReview(int rating, String content, String subscriptionBoxId, String userId) throws Exception { + Review review = reviewRepository.findByIdSubsboxAndIdAuthor(subscriptionBoxId, userId); + + if (review == null) { + throw new ReviewNotFoundException(); + } + + review.setRating(rating); + review.setContent(content); + + return reviewRepository.save(review); + } + + public Review approveReview(String subsbox, String user) throws Exception { + Review review = getReview(subsbox, user); + review.approve(); + return reviewRepository.save(review); + } + + public Review rejectReview(String subsbox, String user) throws Exception { + Review review = getReview(subsbox, user); + review.reject(); + return reviewRepository.save(review); + } + + public void deleteReview(String subsbox, String user) throws Exception { + Review review = reviewRepository.findByIdSubsboxAndIdAuthor(subsbox, user); + + if (review == null) { + throw new ReviewNotFoundException(); + } + + reviewRepository.delete(review); + } + + @Async + public CompletableFuture analyzeSentimentAsync(String reviewText) { + String sentiment = sentimentAnalysisService.analyze(reviewText); + return CompletableFuture.completedFuture(sentiment); + } +} diff --git a/src/main/java/snackscription/review/service/SentimentAnalysisService.java b/src/main/java/snackscription/review/service/SentimentAnalysisService.java index 1ee68cf..d09357b 100644 --- a/src/main/java/snackscription/review/service/SentimentAnalysisService.java +++ b/src/main/java/snackscription/review/service/SentimentAnalysisService.java @@ -1,5 +1,10 @@ package snackscription.review.service; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; + +@Service +@Component public class SentimentAnalysisService { public String analyze(String reviewText) { // do analysis diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index dfdbb9f..083d035 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -1,4 +1,4 @@ -spring.datasource.url=jdbc:postgresql://localhost:5432/snackscription_review +spring.datasource.url=jdbc:postgresql://localhost:5433/snackscription_review spring.datasource.username=postgres spring.datasource.password=postgres spring.jpa.hibernate.ddl-auto=create-drop diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 338aaa3..1bd6102 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,2 +1,4 @@ spring.application.name=review -spring.profiles.active=${PRODUCTION:dev} \ No newline at end of file +spring.profiles.active=${PRODUCTION:dev} +management.endpoint.info.enabled=true +management.endpoints.web.exposure.include=health,metrics,prometheus,loggers \ No newline at end of file diff --git a/src/test/java/snackscription/review/controller/ReviewAdminControllerTest.java b/src/test/java/snackscription/review/controller/ReviewAdminControllerTest.java new file mode 100644 index 0000000..75cf3f4 --- /dev/null +++ b/src/test/java/snackscription/review/controller/ReviewAdminControllerTest.java @@ -0,0 +1,149 @@ +package snackscription.review.controller; + +import com.jayway.jsonpath.JsonPath; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.junit.jupiter.MockitoExtension; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.test.web.servlet.MockMvc; + +import org.springframework.test.web.servlet.ResultActions; +import snackscription.review.model.Review; +import snackscription.review.model.ReviewState; +import snackscription.review.service.ReviewServiceImpl; + +import java.util.ArrayList; +import java.util.Comparator; +import java.util.List; + +import static org.hamcrest.Matchers.hasSize; +import static org.hamcrest.Matchers.is; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ExtendWith(MockitoExtension.class) +@WebMvcTest(ReviewAdminController.class) +public class ReviewAdminControllerTest { + @MockBean + ReviewServiceImpl reviewService; + + @Autowired + MockMvc mockMvc; + + List reviews; + static final String BASE_URL = "/admin"; + + @BeforeEach + public void setUp() { + this.reviews = new ArrayList<>(); + + Review review1 = new Review(5, "I love it", "subsbox_123", "user_123"); + Review review2 = new Review(1, "I hate it", "subsbox_123", "user_124"); + Review review3 = new Review(2, "Hmmmm idk", "subsbox_124", "user_124"); + Review review4 = new Review(3, "It's okay", "subsbox_124", "user_125"); + Review review5 = new Review(4, "I like it", "subsbox_124", "user_126"); + + review4.setState(ReviewState.APPROVED); + review5.setState(ReviewState.REJECTED); + + reviews = new ArrayList<>(); + reviews.add(review1); + reviews.add(review2); + reviews.add(review3); + reviews.add(review4); + reviews.add(review5); + } + + @Test + public void testApproveReview() throws Exception { + Review review = reviews.getFirst(); + + Review approvedReview = new Review(review.getRating(), review.getContent(), review.getSubsbox(), review.getAuthor()); + approvedReview.setState(ReviewState.APPROVED); + + when(reviewService.approveReview(review.getSubsbox(), review.getAuthor())).thenReturn(approvedReview); + + ResultActions result = mockMvc.perform(put(BASE_URL + "/subscription-boxes/{subsboxId}/users/{userId}/approve", review.getSubsbox(), review.getAuthor())) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.rating", is(review.getRating()))) + .andExpect(jsonPath("$.content", is(review.getContent()))) + .andExpect(jsonPath("$.author", is(review.getAuthor()))) + .andExpect(jsonPath("$.subsbox", is(review.getSubsbox()))) + .andExpect(jsonPath("$.state", is("APPROVED"))); + + verify(reviewService).approveReview(review.getSubsbox(), review.getAuthor()); + } + + @Test + public void testRejectReview() throws Exception { + Review review = reviews.getFirst(); + + Review rejectedReview = new Review(review.getRating(), review.getContent(), review.getSubsbox(), review.getAuthor()); + rejectedReview.setState(ReviewState.REJECTED); + + when(reviewService.rejectReview(review.getSubsbox(), review.getAuthor())).thenReturn(rejectedReview); + + ResultActions result = mockMvc.perform(put(BASE_URL + "/subscription-boxes/{subsboxId}/users/{userId}/reject", review.getSubsbox(), review.getAuthor())) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.rating", is(review.getRating()))) + .andExpect(jsonPath("$.content", is(review.getContent()))) + .andExpect(jsonPath("$.author", is(review.getAuthor()))) + .andExpect(jsonPath("$.subsbox", is(review.getSubsbox()))) + .andExpect(jsonPath("$.state", is("REJECTED"))); + + verify(reviewService).rejectReview(review.getSubsbox(), review.getAuthor()); + } + + @Test + public void testGetAllPendingReview() throws Exception { + List pendingReviews = new ArrayList<>(); + String subsboxId = "subsbox_124"; + + for (Review review : reviews) { + if (review.getSubsbox().equals(subsboxId) && review.getState().equals(ReviewState.PENDING)) pendingReviews.add(review); + } + + when(reviewService.getSubsboxReview(subsboxId, ReviewState.PENDING.toString())).thenReturn(pendingReviews); + + String result = mockMvc.perform( + get(BASE_URL + "/subscription-boxes/{subsboxId}/reviews?state=PENDING", subsboxId)) + .andExpect(status().isOk()) + .andExpect(jsonPath("$", hasSize(pendingReviews.size()))) + .andReturn().getResponse().getContentAsString(); + + List foundReviews = new ArrayList(); + for (int i=0; i cmp = Comparator.comparing(Review::getAuthor); + pendingReviews.sort(cmp); + foundReviews.sort(cmp); + + for (int i=0; i(); - Review review1 = new Review(5, "I love it", "user_123", "subsbox_123"); - Review review2 = new Review(1, "I hate it", "user_124", "subsbox_123"); - Review review3 = new Review(2, "Hmmmm idk", "user_124", "subsbox_124"); - Review review4 = new Review(3, "It's okay", "user_125", "subsbox_124"); - Review review5 = new Review(4, "I like it", "user_126", "subsbox_124"); + Review review1 = new Review(5, "I love it", "subsbox_123", "user_123"); + Review review2 = new Review(1, "I hate it", "subsbox_123", "user_124"); + Review review3 = new Review(2, "Hmmmm idk", "subsbox_124", "user_124"); + Review review4 = new Review(3, "It's okay", "subsbox_124", "user_125"); + Review review5 = new Review(4, "I like it", "subsbox_124", "user_126"); review1.setState(ReviewState.PENDING); review4.setState(ReviewState.APPROVED); @@ -73,36 +64,36 @@ public void setUp() { } @Test - public void testCreateSubscriptionBoxReview() throws Exception{ + public void testCreateSubsboxReview() throws Exception{ Review review = reviews.getFirst(); - when(reviewService.createReview(review.getRating(), review.getContent(), review.getSubscriptionBoxId(), review.getUserId())).thenReturn(review); + when(reviewService.createReview(review.getRating(), review.getContent(), review.getId().getSubsbox(), review.getId().getAuthor())).thenReturn(review); - ResultActions result = mockMvc.perform(post("/api/subscription-boxes/{subscriptionBoxId}", review.getSubscriptionBoxId()) + ResultActions result = mockMvc.perform(post("/subscription-boxes/{subsbox}/users/self", review.getSubsbox()) .contentType(MediaType.APPLICATION_JSON) - .content("{\"rating\": 5, \"content\": \"I love it\", \"userId\": \"user_123\"}")) + .content("{\"rating\": 5, \"content\": \"I love it\", \"author\": \"user_123\"}")) .andExpect(status().isCreated()) .andExpect(jsonPath("$.rating", is(5))) .andExpect(jsonPath("$.content", is("I love it"))) - .andExpect(jsonPath("$.userId", is("user_123"))) - .andExpect(jsonPath("$.subscriptionBoxId", is("subsbox_123"))); + .andExpect(jsonPath("$.author", is("user_123"))) + .andExpect(jsonPath("$.subsbox", is("subsbox_123"))); - verify(reviewService).createReview(review.getRating(), review.getContent(), review.getSubscriptionBoxId(), review.getUserId()); + verify(reviewService).createReview(review.getRating(), review.getContent(), review.getSubsbox(), review.getAuthor()); } @Test - public void testReadAllPublicSubscriptionBoxReview() throws Exception { + public void testReadAllPublicSubsboxReviews() throws Exception { List approvedReviews = new ArrayList<>(); - String subsboxId = "subsbox_124"; + String subsbox = "subsbox_124"; for (Review review : reviews) { - if (review.getSubscriptionBoxId().equals(subsboxId) && review.getState().equals(ReviewState.APPROVED)) { + if (review.getSubsbox().equals(subsbox) && review.getState().equals(ReviewState.APPROVED)) { approvedReviews.add(review); } } - when(reviewService.getAllSubscriptionBoxReview(subsboxId, "APPROVED")).thenReturn(approvedReviews); + when(reviewService.getSubsboxReview(subsbox, "APPROVED")).thenReturn(approvedReviews); - String result = mockMvc.perform(get("/api/subscription-boxes/{subscriptionBoxId}", subsboxId)) + String result = mockMvc.perform(get("/subscription-boxes/{subsbox}", subsbox)) .andExpect(status().isOk()) .andExpect(jsonPath("$", hasSize(approvedReviews.size()))) .andReturn() @@ -114,241 +105,82 @@ public void testReadAllPublicSubscriptionBoxReview() throws Exception { String prefixMatcher = String.format("$[%d]", i); int rating = JsonPath.read(result, prefixMatcher + ".rating"); String content = JsonPath.read(result, prefixMatcher + ".content"); - String userId = JsonPath.read(result, prefixMatcher + ".userId"); - String curSubscriptionBoxId = JsonPath.read(result, prefixMatcher + ".subscriptionBoxId"); + String author = JsonPath.read(result, prefixMatcher + ".author"); + String curSubscriptionBoxId = JsonPath.read(result, prefixMatcher + ".subsbox"); - Review review = new Review(rating, content, userId, curSubscriptionBoxId); + Review review = new Review(rating, content, curSubscriptionBoxId, author); foundReviews.add(review); } - Comparator cmp = new Comparator() { - @Override - public int compare(Review o1, Review o2) { - return o1.getUserId().compareTo(o2.getUserId()); - } - }; - + Comparator cmp = Comparator.comparing(Review::getAuthor); approvedReviews.sort(cmp); foundReviews.sort(cmp); for (int i=0; i reviews = new ArrayList<>(); -// reviews.add(new Review(5, "amazing", "user1", subsboxId)); -// reviews.add(new Review(4, "good", "user2", subsboxId)); - -// when(reviewService.testGetAllSubscriptionBoxReview(subsboxId)).thenReturn(reviews); - -// ResultActions result = mockMvc.perform(get("/api/subscription-boxes/{subsboxId}", subsboxId)) -// .andExpect(status().isOk()) -// .andExpect(jsonPath("$", hasSize(2))) -// .andExpect(jsonPath("$[0].rating", is(5))) -// .andExpect(jsonPath("$[0].content", is("amazing"))) -// .andExpect(jsonPath("$[0].userId", is("user1"))) -// .andExpect(jsonPath("$[0].subscriptionBoxId", is(subsboxId))) -// .andExpect(jsonPath("$[1].rating", is(4))) -// .andExpect(jsonPath("$[1].content", is("good"))) -// .andExpect(jsonPath("$[1].userId", is("user2"))) -// .andExpect(jsonPath("$[1].subscriptionBoxId", is(subsboxId))); - -// verify(reviewService).testGetAllSubscriptionBoxReview(subsboxId); -// } - -// @Test -// public void testGetById() throws Exception { -// Review review = new Review( -// 5, "amazing", "user1", "subsboxId" -// ); -// String reviewId = review.getId(); - -// when(reviewService.findById(reviewId)).thenReturn(review); - -// ResultActions result = mockMvc.perform(get("/api/reviews/{reviewId}", reviewId)) -// .andExpect(status().isOk()) -// .andExpect(jsonPath("$.rating", is(5))) -// .andExpect(jsonPath("$.content", is("amazing"))) -// .andExpect(jsonPath("$.userId", is("user1"))) -// .andExpect(jsonPath("$.subscriptionBoxId", is("subsboxId"))); - -// verify(reviewService).findById(reviewId); -// } - -// @Test -// public void testGetBySubscriptionBoxId() throws Exception { -// List curReviews = new ArrayList<>(); - -// String subscriptionBoxId = this.reviews.getFirst().getSubscriptionBoxId(); -// for (Review review : this.reviews) { -// if (review.getSubscriptionBoxId().equals(subscriptionBoxId)) { -// curReviews.add(review); -// } -// } - -// when(reviewService.findBySubscriptionBoxId(subscriptionBoxId)).thenReturn(curReviews); - -// String result = mockMvc.perform(get("/api/subscription-boxes/{subscriptionBoxId}", subscriptionBoxId)) -// .andExpect(status().isOk()) -// .andExpect(jsonPath("$", hasSize(curReviews.size()))) -// .andReturn() -// .getResponse() -// .getContentAsString(); - -// List foundReviews = new ArrayList(); -// for (int i=0; i cmp = new Comparator() { -// @Override -// public int compare(Review o1, Review o2) { -// return o1.getUserId().compareTo(o2.getUserId()); -// } -// }; - -// curReviews.sort(cmp); -// foundReviews.sort(cmp); - -// for (int i=0; i(); - - Review review1 = new Review(5, "I love it", "user_123", "subsbox_123"); - Review review2 = new Review(1, "I hate it", "user_124", "subsbox_123"); - Review review3 = new Review(2, "Hmmmm idk", "user_124", "subsbox_124"); - Review review4 = new Review(3, "It's okay", "user_125", "subsbox_124"); - Review review5 = new Review(4, "I like it", "user_126", "subsbox_124"); + + Review review1 = new Review(5, "I love it", "subsbox_123", "user_123"); + Review review2 = new Review(1, "I hate it", "subsbox_123", "user_124"); + Review review3 = new Review(2, "Hmmmm idk", "subsbox_124", "user_124"); + Review review4 = new Review(3, "It's okay", "subsbox_124", "user_125"); + Review review5 = new Review(4, "I like it", "subsbox_124", "user_126"); review1.setState(ReviewState.PENDING); review4.setState(ReviewState.APPROVED); @@ -50,14 +49,14 @@ public void setUp() { public void testFindBySubscriptionBoxId() { List curReviews = new ArrayList<>(); - String subsbox_id = this.reviews.getFirst().getSubscriptionBoxId(); + String subsbox_id = this.reviews.getFirst().getSubsbox(); for (Review review : this.reviews) { - if (review.getSubscriptionBoxId().equals(subsbox_id)) { + if (review.getSubsbox().equals(subsbox_id)) { curReviews.add(review); } } - List foundReviews = reviewRepository.findBySubscriptionBoxId(subsbox_id); + List foundReviews = reviewRepository.findByIdSubsbox(subsbox_id); assertEquals(curReviews.size(), foundReviews.size()); for (int i=0; i curReviews = new ArrayList<>(); - String subsbox_id = this.reviews.getFirst().getSubscriptionBoxId(); + String subsbox_id = this.reviews.getFirst().getSubsbox(); for (Review review : this.reviews) { - if (review.getSubscriptionBoxId().equals(subsbox_id) && review.getState().equals(ReviewState.APPROVED)){ + if (review.getSubsbox().equals(subsbox_id) && review.getState().equals(ReviewState.APPROVED)){ curReviews.add(review); } } - List foundReviews = reviewRepository.findBySubscriptionBoxIdAndState(subsbox_id, ReviewState.APPROVED); + List foundReviews = reviewRepository.findByIdSubsboxAndState(subsbox_id, ReviewState.APPROVED); assertEquals(curReviews.size(), foundReviews.size()); for (int i=0; i reviews; - // @Test - // public void testGetAllSubscriptionBoxReview() { - // ReviewService reviewService = new ReviewService(reviewRepo); - - // Optional review = Optional.of(new Review( - // 5, "amazing", "user1", "subsboxId" - // )); - - // when(reviewRepo.findById("subsboxId")).thenReturn(review); - - // Review foundReview = reviewService.getAllSubscriptionBoxReview("subsboxId"); - - // assertEquals(review.get(), foundReview); - - // verify(reviewRepo).findBySubscriptionBoxId("subsboxId"); - - // } - @BeforeEach public void setUp() { - reviewService = new ReviewService(reviewRepo); sentimentAnalysisService = new SentimentAnalysisService(); + reviewService = new ReviewServiceImpl(reviewRepo, sentimentAnalysisService); - Review review1 = new Review(5, "I love it", "user_123", "subsbox_123"); - Review review2 = new Review(1, "I hate it", "user_124", "subsbox_123"); - Review review3 = new Review(2, "Hmmmm idk", "user_124", "subsbox_124"); - Review review4 = new Review(3, "It's okay", "user_125", "subsbox_124"); - Review review5 = new Review(4, "I like it", "user_126", "subsbox_124"); + Review review1 = new Review(5, "I love it", "subsbox_123", "user_123"); + Review review2 = new Review(1, "I hate it", "subsbox_123", "user_124"); + Review review3 = new Review(2, "Hmmmm idk", "subsbox_124", "user_124"); + Review review4 = new Review(3, "It's okay", "subsbox_124", "user_125"); + Review review5 = new Review(4, "I like it", "subsbox_124", "user_126"); review1.setState(ReviewState.PENDING); review4.setState(ReviewState.APPROVED); @@ -82,75 +57,81 @@ public void setUp() { reviews.add(review5); } - @Test - public void getReviewById() throws Exception { - - Optional review = Optional.of(new Review( - 5, "amazing", "user1", "subsboxId" - )); - - String reviewId = review.get().getId(); + @Test + public void testGetSubsboxReview() throws Exception { + String subscriptionBoxId = this.reviews.getFirst().getSubsbox(); + List curReviews = new ArrayList<>(); + for (Review review : this.reviews) { + if (review.getSubsbox().equals(subscriptionBoxId)) { + curReviews.add(review); + } + } - when(reviewRepo.findById(reviewId)).thenReturn(review); + when(reviewRepo.findByIdSubsbox(subscriptionBoxId)).thenReturn(curReviews); - Review foundReview = reviewService.findById(reviewId); + List foundReviews = reviewService.getSubsboxReview(subscriptionBoxId, null); - assertEquals(foundReview, review.get()); + assertEquals(curReviews, foundReviews); - verify(reviewRepo).findById(reviewId); + verify(reviewRepo).findByIdSubsbox(subscriptionBoxId); } @Test - public void getReviewByIdNotFound() { - ReviewService reviewService = new ReviewService(reviewRepo); + public void testGetSubsboxReviewNotFound() throws Exception { + String subscriptionBoxId = "nonexistent_subsbox_id"; - Optional review = Optional.empty(); + when(reviewRepo.findByIdSubsbox(subscriptionBoxId)).thenReturn(null); - String reviewId = "reviewId"; + List foundReviews = reviewService.getSubsboxReview(subscriptionBoxId, null); - when(reviewRepo.findById(reviewId)).thenReturn(review); - - assertThrows(ReviewNotFoundException.class, () -> { - reviewService.findById(reviewId); - }); + assertNotNull(foundReviews); + assertEquals(0, foundReviews.size()); - verify(reviewRepo).findById(reviewId); + verify(reviewRepo).findByIdSubsbox(subscriptionBoxId); } @Test - public void getReviewsBySubscriptionBoxId() { - ReviewService reviewService = new ReviewService(reviewRepo); + public void testGetSubsboxReviewApproved() throws Exception { + String subscriptionBoxId = this.reviews.getFirst().getSubsbox(); - List curReviews = new ArrayList<>(); + List cuReviews = new ArrayList<>(); - String subscriptionBoxId = this.reviews.getFirst().getSubscriptionBoxId(); for (Review review : this.reviews) { - if (review.getSubscriptionBoxId().equals(subscriptionBoxId)) { - curReviews.add(review); + if (review.getSubsbox().equals(subscriptionBoxId) && review.getState().equals(ReviewState.APPROVED)) { + cuReviews.add(review); } } - when(reviewRepo.findBySubscriptionBoxId(subscriptionBoxId)).thenReturn(curReviews); + when(reviewRepo.findByIdSubsboxAndState(subscriptionBoxId, ReviewState.APPROVED)).thenReturn(cuReviews); - List foundReviews = reviewService.findBySubscriptionBoxId(subscriptionBoxId); + List foundReviews = reviewService.getSubsboxReview(subscriptionBoxId, "APPROVED"); - assertEquals(curReviews, foundReviews); + assertEquals(cuReviews, foundReviews); + + verify(reviewRepo).findByIdSubsboxAndState(subscriptionBoxId, ReviewState.APPROVED); + } + + @Test + public void testGetSubsboxReviewInvalidState() throws Exception { + String subscriptionBoxId = this.reviews.getFirst().getSubsbox(); - verify(reviewRepo).findBySubscriptionBoxId(subscriptionBoxId); + assertThrows(InvalidStateException.class, () -> { + reviewService.getSubsboxReview(subscriptionBoxId, "INVALID_STATE"); + }); } @Test public void testCreateReview() throws Exception { Review review = reviews.getFirst(); - + when(reviewRepo.save(any(Review.class))).thenReturn(review); Review savedReview = reviewService.createReview( review.getRating(), review.getContent(), - review.getSubscriptionBoxId(), - review.getUserId()); + review.getSubsbox(), + review.getAuthor()); assertEqualReview(review, savedReview); @@ -158,108 +139,99 @@ public void testCreateReview() throws Exception { } @Test - public void testGetAllSubscriptionBoxReview() throws Exception { - String subscriptionBoxId = this.reviews.getFirst().getSubscriptionBoxId(); - - List curReviews = new ArrayList<>(); - - for (Review review : this.reviews) { - if (review.getSubscriptionBoxId().equals(subscriptionBoxId)) { - curReviews.add(review); - } - } + public void testCreateReviewAlreadyExist() throws Exception { + Review review = reviews.get(0); + when(reviewRepo.existsById(review.getId())).thenReturn(true); - when(reviewRepo.findBySubscriptionBoxId(subscriptionBoxId)).thenReturn(curReviews); - - List foundReviews = reviewService.getAllSubscriptionBoxReview(subscriptionBoxId, null); - - assertEquals(curReviews, foundReviews); + assertThrows(Exception.class, () -> { + reviewService.createReview(review.getRating(), review.getContent(), review.getSubsbox(), review.getAuthor()); + }); - verify(reviewRepo).findBySubscriptionBoxId(subscriptionBoxId); + verify(reviewRepo).existsById(review.getId()); } @Test - public void testGetAllSubscriptionBoxReviewApproved() throws Exception { - String subscriptionBoxId = this.reviews.getFirst().getSubscriptionBoxId(); - - List cuReviews = new ArrayList<>(); - - for (Review review : this.reviews) { - if (review.getSubscriptionBoxId().equals(subscriptionBoxId) && review.getState().equals(ReviewState.APPROVED)) { - cuReviews.add(review); - } - } - - when(reviewRepo.findBySubscriptionBoxIdAndState(subscriptionBoxId, ReviewState.APPROVED)).thenReturn(cuReviews); - - List foundReviews = reviewService.getAllSubscriptionBoxReview(subscriptionBoxId, "APPROVED"); - - assertEquals(cuReviews, foundReviews); - - verify(reviewRepo).findBySubscriptionBoxIdAndState(subscriptionBoxId, ReviewState.APPROVED); + public void testCreateReviewInvalidRating() throws Exception { + Review review = reviews.get(0); + assertThrows(Exception.class, () -> { + reviewService.createReview(-1, review.getContent(), review.getSubsbox(), review.getAuthor()); + }); } @Test public void testEditReview() throws Exception { Review review = reviews.getFirst(); - String subscriptionBoxId = review.getSubscriptionBoxId(); - String userId = review.getUserId(); + String subsbox = review.getSubsbox(); + String author = review.getAuthor(); int newRating = 1; String newContent = "Changed content"; - Review newReview = new Review(newRating, newContent, userId, subscriptionBoxId); + Review newReview = new Review(newRating, newContent, author, subsbox); newReview.setId(review.getId()); - when(reviewRepo.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId)).thenReturn(review); + when(reviewRepo.findByIdSubsboxAndIdAuthor(subsbox, author)).thenReturn(review); when(reviewRepo.save(any(Review.class))).thenReturn(newReview); - Review editedReview = reviewService.editReview(newRating, newContent, subscriptionBoxId, userId); + Review editedReview = reviewService.editReview(newRating, newContent, subsbox, author); assertEquals(newRating, editedReview.getRating()); assertEquals(newContent, editedReview.getContent()); - assertEquals(subscriptionBoxId, editedReview.getSubscriptionBoxId()); - assertEquals(userId, editedReview.getUserId()); + assertEquals(subsbox, editedReview.getSubsbox()); + assertEquals(author, editedReview.getAuthor()); assertEquals(review.getId(), editedReview.getId()); } + @Test + public void testEditReviewNotFound() throws Exception { + Review review = reviews.getFirst(); + String subsbox = review.getSubsbox(); + String author = review.getAuthor(); + + int newRating = 1; + String newContent = "Changed content"; + Review newReview = new Review(newRating, newContent, author, subsbox); + newReview.setId(review.getId()); + + when(reviewRepo.findByIdSubsboxAndIdAuthor(subsbox, author)).thenReturn(null); + + assertThrows(ReviewNotFoundException.class, () -> { + reviewService.editReview(newRating, newContent, subsbox, author); + }); + } + @Test public void testDeleteReview() throws Exception { - String subscriptionBoxId = this.reviews.getFirst().getSubscriptionBoxId(); - String userId = this.reviews.getFirst().getUserId(); + String subsbox = this.reviews.getFirst().getSubsbox(); + String author = this.reviews.getFirst().getAuthor(); Review review = reviews.getFirst(); - when(reviewRepo.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId)).thenReturn(review); + when(reviewRepo.findByIdSubsboxAndIdAuthor(subsbox, author)).thenReturn(review); - reviewService.deleteReview(subscriptionBoxId, userId); + reviewService.deleteReview(subsbox, author); - when(reviewRepo.findBySubscriptionBoxIdAndUserId(subscriptionBoxId, userId)).thenReturn(null); - - assertNull(reviewService.getReview(subscriptionBoxId, userId)); + assertThrows(ReviewNotFoundException.class, () -> reviewService.getReview(subsbox, author)); verify(reviewRepo).delete(review); } - public void assertEqualReview(Review review1, Review review2) { - assertEquals(review1.getRating(), review2.getRating()); - assertEquals(review1.getContent(), review2.getContent()); - assertEquals(review1.getUserId(), review2.getUserId()); - assertEquals(review1.getSubscriptionBoxId(), review2.getSubscriptionBoxId()); - } - @Test - public void testAnalyzeSentimentAsyncTest() { - String reviewText = "This is a great product!"; - String expectedSentiment = "positive"; + public void testDeleteReviewNotFound() throws Exception { + String subsbox = this.reviews.getFirst().getSubsbox(); + String author = this.reviews.getFirst().getAuthor(); - when(sentimentAnalysisService.analyze(reviewText)).thenReturn(expectedSentiment); + Review review = reviews.getFirst(); - CompletableFuture sentimentFuture = reviewService.analyzeSentimentAsync(reviewText); + when(reviewRepo.findByIdSubsboxAndIdAuthor(subsbox, author)).thenReturn(null); - String actualSentiment = sentimentFuture.join(); - verify(sentimentAnalysisService).analyze(reviewText); + assertThrows(ReviewNotFoundException.class, () -> reviewService.deleteReview(subsbox, author)); + } - assertEquals(expectedSentiment, actualSentiment); + public void assertEqualReview(Review review1, Review review2) { + assertEquals(review1.getRating(), review2.getRating()); + assertEquals(review1.getContent(), review2.getContent()); + assertEquals(review1.getAuthor(), review2.getAuthor()); + assertEquals(review1.getSubsbox(), review2.getSubsbox()); } }