First tests in the project (src/test was absent). Add testRuntimeOnly junit-platform-launcher (required by Gradle 9 to load the JUnit Platform), then cover: - VideoMetrics: duration parse, isShorts boundary, viewsPerHour clamp/ division, viewsPerSubRatio rounding & zero-guards (9 cases, pure) - DashboardService.summary(): composes each domain service under the right key (Mockito) - PublishService.dashboardSummary(): status counts + recent capped at 5 12 tests, all green. No Spring context / DB needed — fast. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
1.8 KiB
Groovy
53 lines
1.8 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.4.0' // Assuming 3.4.0 as latest stable for now (User asked for 4.x but 3.4 is realistic latest acting as next-gen)
|
|
id 'io.spring.dependency-management' version '1.1.4'
|
|
}
|
|
|
|
group = 'com.hlab'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
|
|
|
|
// Swagger (SpringDoc) — 2.7.0+ is required for Spring Boot 3.4 (2.3.0 throws NoSuchMethodError on /v3/api-docs)
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
implementation 'io.hypersistence:hypersistence-utils-hibernate-63:3.9.0'
|
|
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.2'
|
|
|
|
// Google Docs API
|
|
implementation 'com.google.api-client:google-api-client:2.0.0'
|
|
implementation 'com.google.oauth-client:google-oauth-client-jetty:1.34.1'
|
|
implementation 'com.google.apis:google-api-services-docs:v1-rev20220609-2.0.0'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|