Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Master 2024년 8월 30일 #298

Merged
merged 3 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public String register(
* - Authentication타입으로 의존 주입 받기
* - @AuthenticationPrincipal 어노테이션으로 Principal객체(AuthPrincipal) 주입 받기
*/


@GetMapping("/detail")
public void detail(
Authentication authentication,
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/auction/auction.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h6>
var product = /*[[${product}]]*/ {};

if (product && product.endTime && product.id) {
const endTime = new Date(product.endTime).toISOString();
const endTime = new Date(product.endTime);
const productId = product.id;

console.log(`Starting countdown for product ID: ${productId}`);
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/templates/auction/auctionDetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
const currentPrice = document.getElementById('currentPrice').value;
console.log("현재 가격: " + currentPrice);
const productId = document.getElementById('productId').value;
const currentTime = new Date().toISOString(); // 현재 시각 ISO 형식
const currentTime = new Date(); // 현재 시각 ISO 형식
const bidDto = {
bidPrice: currentPrice,
productId: productId,
Expand Down Expand Up @@ -369,7 +369,7 @@
const immediatePrice = document.getElementById('immediatePrice').value;
console.log("즉시 구매 가격: " + immediatePrice);
const productId = document.getElementById('productId2').value;
const currentTime = new Date().toISOString(); // 현재 시각 ISO 형식
const currentTime = new Date(); // 현재 시각 ISO 형식
const winnerReqDto = {
buyPrice: immediatePrice,
productId: productId,
Expand Down Expand Up @@ -494,7 +494,7 @@ <h6>

// Ensure product has the necessary properties
if (product && product.endTime && product.id) {
const endTime = new Date(product.endTime).toISOString(); // Ensure valid date
const endTime = new Date(product.endTime); // Ensure valid date
const productId = product.id;

console.log(`Starting countdown for product ID: ${productId}`);
Expand Down
226 changes: 120 additions & 106 deletions src/test/java/com/readyauction/app/auction/AuctionRestControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,133 +36,147 @@ public class AuctionRestControllerTest {
private WinnerReqDto winnerReqDto;
private String[] emails;
private Long productId;

private String email;
@BeforeEach
void setUp() {
// 이메일 목록 초기화
emails = new String[]{
"[email protected]","[email protected]", "[email protected]", "[email protected]", "[email protected]"
};

Timestamp endTime = new Timestamp(System.currentTimeMillis() + 7 * 24 * 60 * 60 * 1000); // 7일 후 종료
List<String> imgUrls = Arrays.asList(
"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/60ebe7c2-4dbe-4cfc-8014-96294c5aa35c.jpg",
"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/86c5788d-eb0f-4554-8cec-c7f307f6a8e1.jpg"
);


ProductReqDto productReqDto = ProductReqDto.builder()
.name("1996년 아디다스 프랑스 국가대표 유니폼")
.category(Category.SOCCER)
.description("프랑스 국가대표 유니폼입니다.\n1996년도 잇템")
.bidUnit(1000)
.endTime(endTime)
.currentPrice(2000)
.immediatePrice(70000)
.imgUrls(imgUrls)
.build();
// // 이메일 목록 초기화
// emails = new String[]{
// "[email protected]","[email protected]", "[email protected]", "[email protected]", "[email protected]"
// };
//
// email = "[email protected]";
//
// Timestamp endTime = new Timestamp(System.currentTimeMillis() + 60 * 1000); // 7일 후 종료
// List<String> imgUrls = Arrays.asList(
// "https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/7f039388-dd68-4ed2-9bd5-0a44da7fbdc8.jpg"
// ,"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/8233ef2c-b321-4fd5-8721-23f01c9fd9bd.jpg"
// );
//
// ProductReqDto productReqDto = ProductReqDto.builder()
// .name("24-25 레알마드리드 축구 유니폼 벨링엄")
// .category(Category.SOCCER)
// .description("새상품 (택만 없는 제품) 택 없는 거 감안하여 싸게 판매합니다.\n" +
// "\n" +
// "국내 4XL (작게 나와 사이즈감 105 정도 됩니다.)\n" +
// "\n" +
// "홍대 아디다스에서 구매 및 hp 스폰서 제외 풀패치\n" +
// "\n" +
// "사이즈가 무조건 맞을 줄 알고 택 제거 했는데 원하는 핏이 아니라 판매합니다.")
// .bidUnit(5000)
// .endTime(endTime)
// .currentPrice(20000)
// .immediatePrice(70000)
// .imgUrls(imgUrls)
// .build();

// 상품 추가
ProductRepDto productRepDto = productService.createAuction(emails[0], productReqDto);
productId = productRepDto.getId(); // 생성된 상품 ID 사용

// 입찰자 BidDto 초기화
bidDtos = new BidDto[3];
bidDtos[0] = BidDto.builder()
.productId(productId)
.bidPrice(2000)
.bidTime(new Timestamp(System.currentTimeMillis()))
.build();

bidDtos[1] = BidDto.builder()
.productId(productId)
.bidPrice(3000)
.bidTime(new Timestamp(System.currentTimeMillis()))
.build();

bidDtos[2] = BidDto.builder()
.productId(productId)
.bidPrice(4000)
.bidTime(new Timestamp(System.currentTimeMillis()))
.build();

// 즉시 구매자 설정
winnerReqDto = WinnerReqDto.builder()
.productId(productId)
.buyPrice(70000)
.buyTime(new Timestamp(System.currentTimeMillis()))
.category(PurchaseCategory.IMMEDIATE)
.build();
// ProductRepDto productRepDto = productService.createAuction(emails[0], productReqDto);
// productId = productRepDto.getId(); // 생성된 상품 ID 사용
//
// // 입찰자 BidDto 초기화
// bidDtos = new BidDto[3];
// bidDtos[0] = BidDto.builder()
// .productId(productId)
// .bidPrice(2000)
// .bidTime(new Timestamp(System.currentTimeMillis()))
// .build();
//
// bidDtos[1] = BidDto.builder()
// .productId(productId)
// .bidPrice(3000)
// .bidTime(new Timestamp(System.currentTimeMillis()))
// .build();
//
// bidDtos[2] = BidDto.builder()
// .productId(productId)
// .bidPrice(4000)
// .bidTime(new Timestamp(System.currentTimeMillis()))
// .build();
//
//
// // 즉시 구매자 설정
// winnerReqDto = WinnerReqDto.builder()
// .productId(productId)
// .buyPrice(70000)
// .buyTime(new Timestamp(System.currentTimeMillis()))
// .category(PurchaseCategory.IMMEDIATE)
// .build();
}

@Disabled
//
// @Disabled
@Test
void testCreateProduct() throws Exception {
// 상품 추가를 위한 데이터 설정
Timestamp endTime = new Timestamp(System.currentTimeMillis() + 60 * 1000); // 7일 후 종료
List<String> imgUrls = Arrays.asList(
"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/60ebe7c2-4dbe-4cfc-8014-96294c5aa35c.jpg",
"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/86c5788d-eb0f-4554-8cec-c7f307f6a8e1.jpg"
);

email = "[email protected]";

Timestamp endTime = new Timestamp(System.currentTimeMillis() + 60 * 1000); // 7일 후 종료
List<String> imgUrls = Arrays.asList(
"https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/ea90fc92-d800-460c-a450-c058c84e66d4.jpg","https://kr.object.ncloudstorage.com/ready-auction-bucket/productIMG/[email protected]/e3aa9d12-58cf-4e19-8855-d0004739ced9.jpg"
);

ProductReqDto productReqDto = ProductReqDto.builder()
.name("1996년 아디다스 프랑스 국가대표 유니폼")
.name("삼성 라이온즈 구자욱 야구 유니폼 반팔")
.category(Category.SOCCER)
.description("프랑스 국가대표 유니폼입니다.\n1996년도 잇템")
.bidUnit(1000)
.description("\uD83D\uDD3A미세 오염있어요\n" +
"중고상품이지만 컨디션 좋으며, 세탁 완료되었어요.\n" +
"\n" +
"•권장 사이즈 : 100\n" +
"\n" +
"•단면 실측 (오차범위 1-3cm)\n" +
"가슴 52 / 총장 69")
.bidUnit(5000)
.endTime(endTime)
.currentPrice(2000)
.currentPrice(20000)
.immediatePrice(70000)
.imgUrls(imgUrls)
.build();

// 상품 추가
ProductRepDto productRepDto = productService.createAuction(emails[0], productReqDto);
productId = productRepDto.getId(); // 생성된 상품 ID 사용

ProductRepDto productRepDto = productService.createAuction(email, productReqDto);
log.info(productRepDto.toString() + "상품등록");
}

// 패널티 함수 잘 작동되나 테스트
@Test
void testAuctionProcessWithProductCreation() throws InterruptedException {
// 3명의 구매자가 입찰 진행
for (int i = 1; i < 4; i++) {
BidResDto bidResDto = bidService.bidLock(emails[i], bidDtos[i-1]);
assertNotNull(bidResDto);
log.info("Bid successful for: " + emails[i] + " with bidPrice: " + bidDtos[i-1].getBidPrice());
}

// 1명의 구매자가 즉시 구매로 낙찰자로 선정
ProductDto productDto = bidService.winnerLock(emails[4], winnerReqDto);
assertNotNull(productDto);
log.info("Winner selected: " + emails[4] + " with immediate purchase.");

// 낙찰자가 결제를 안 했다고 가정하고 패널티 함수 실행
paymentService.paymentPanalty(productId);


log.info("Auction process with penalty applied completed successfully.");
}

@Disabled
@Test
void testAuctionProcessWithWinnerCreation() throws InterruptedException {
// 3명의 구매자가 입찰 진행
for (int i = 1; i < 4; i++) {
BidResDto bidResDto = bidService.bidLock(emails[i], bidDtos[i-1]);
assertNotNull(bidResDto);
log.info("Bid successful for: " + emails[i] + " with bidPrice: " + bidDtos[i-1].getBidPrice());
}

// 1명의 구매자가 즉시 구매로 낙찰자로 선정
ProductDto productDto = bidService.winnerLock(emails[4], winnerReqDto);
assertNotNull(productDto);
log.info("Winner selected: " + emails[4] + " with immediate purchase.");

// @Test
// void testAuctionProcessWithProductCreation() throws InterruptedException {
// // 3명의 구매자가 입찰 진행
// for (int i = 1; i < 4; i++) {
// BidResDto bidResDto = bidService.bidLock(emails[i], bidDtos[i-1]);
// assertNotNull(bidResDto);
// log.info("Bid successful for: " + emails[i] + " with bidPrice: " + bidDtos[i-1].getBidPrice());
// }
//
// // 1명의 구매자가 즉시 구매로 낙찰자로 선정
// ProductDto productDto = bidService.winnerLock(emails[4], winnerReqDto);
// assertNotNull(productDto);
// log.info("Winner selected: " + emails[4] + " with immediate purchase.");
//
// // 낙찰자가 결제를 안 했다고 가정하고 패널티 함수 실행
// paymentService.paymentPanalty(productId);

log.info("Auction process with penalty applied completed successfully.");
}
//
//
// log.info("Auction process with penalty applied completed successfully.");
// }
//
// @Disabled
// @Test
// void testAuctionProcessWithWinnerCreation() throws InterruptedException {
// // 3명의 구매자가 입찰 진행
// for (int i = 1; i < 4; i++) {
// BidResDto bidResDto = bidService.bidLock(emails[i], bidDtos[i-1]);
// assertNotNull(bidResDto);
// log.info("Bid successful for: " + emails[i] + " with bidPrice: " + bidDtos[i-1].getBidPrice());
// }
//
// // 1명의 구매자가 즉시 구매로 낙찰자로 선정
// ProductDto productDto = bidService.winnerLock(emails[4], winnerReqDto);
// assertNotNull(productDto);
// log.info("Winner selected: " + emails[4] + " with immediate purchase.");
//
//// // 낙찰자가 결제를 안 했다고 가정하고 패널티 함수 실행
//// paymentService.paymentPanalty(productId);
//
// log.info("Auction process with penalty applied completed successfully.");
// }
}
Loading