Skip to content

Commit

Permalink
Implement Get Products API with pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwell-balla committed Nov 23, 2024
1 parent aac990b commit fb64206
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 22 deletions.
1 change: 1 addition & 0 deletions .idea/sqldialects.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.UUID;

Expand All @@ -18,7 +19,7 @@
@AllArgsConstructor
@NoArgsConstructor
@Table(name = "products")
class ProductEntity {
class ProductEntity implements Serializable {

@Id
@GeneratedValue(strategy = GenerationType.UUID)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.maxwell.catalog_service.domain;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.UUID;

@Repository
interface ProductRepository extends JpaRepository<ProductEntity, UUID> {
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
CREATE TABLE products
(
id UUID DEFAULT gen_random_uuid() PRIMARY KEY NOT NULL,
code TEXT NOT NULL UNIQUE,
name TEXT NOT NULL,
description TEXT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ class TestcontainersConfiguration {
PostgreSQLContainer<?> postgresContainer() {
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:16-alpine"));
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import static io.restassured.RestAssured.given;
import static org.hamcrest.Matchers.is;

@Sql("/test-data.sql")
@Sql(scripts = "/test-data.sql", executionPhase = Sql.ExecutionPhase.BEFORE_TEST_METHOD)
class ProductControllerTest extends AbstractIT {

@Test
Expand Down
34 changes: 17 additions & 17 deletions catalog-service/src/test/resources/test-data.sql
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
truncate table products;
ALTER TABLE products ADD COLUMN id UUID DEFAULT gen_random_uuid();

insert into products(code, name, description, image_url, price) values
('P100','The Hunger Games','Winning will make you famous. Losing means certain death...','https://images.gr-assets.com/books/1447303603l/2767052.jpg', 34.0),
('P101','To Kill a Mockingbird','The unforgettable novel of a childhood in a sleepy Southern town and the crisis of conscience that rocked it...','https://images.gr-assets.com/books/1361975680l/2657.jpg', 45.40),
('P102','The Chronicles of Narnia','Journeys to the end of the world, fantastic creatures, and epic battles between good and evil—what more could any reader ask for in one book?...','https://images.gr-assets.com/books/1449868701l/11127.jpg', 44.50),
('P103','Gone with the Wind', 'Gone with the Wind is a novel written by Margaret Mitchell, first published in 1936.', 'https://images.gr-assets.com/books/1328025229l/18405.jpg',44.50),
('P104','The Fault in Our Stars','Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis.','https://images.gr-assets.com/books/1360206420l/11870085.jpg',14.50),
('P105','The Giving Tree','Once there was a tree...and she loved a little boy.','https://images.gr-assets.com/books/1174210942l/370493.jpg',32.0),
('P106','The Da Vinci Code','An ingenious code hidden in the works of Leonardo da Vinci.A desperate race through the cathedrals and castles of Europe','https://images.gr-assets.com/books/1303252999l/968.jpg',14.50),
('P107','The Alchemist','Paulo Coelho''s masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure','https://images.gr-assets.com/books/1483412266l/865.jpg',12.0),
('P108','Charlotte''s Web','This beloved book by E. B. White, author of Stuart Little and The Trumpet of the Swan, is a classic of children''s literature','https://images.gr-assets.com/books/1439632243l/24178.jpg',14.0),
('P109','The Little Prince','Moral allegory and spiritual autobiography, The Little Prince is the most translated book in the French language.','https://images.gr-assets.com/books/1367545443l/157993.jpg',16.50),
('P110','A Thousand Splendid Suns','A Thousand Splendid Suns is a breathtaking story set against the volatile events of Afghanistan''s last thirty years—from the Soviet invasion to the reign of the Taliban to post-Taliban rebuilding—that puts the violence, fear, hope, and faith of this country in intimate, human terms.','https://images.gr-assets.com/books/1345958969l/128029.jpg',15.50),
('P111','A Game of Thrones','Here is the first volume in George R. R. Martin’s magnificent cycle of novels that includes A Clash of Kings and A Storm of Swords.','https://images.gr-assets.com/books/1436732693l/13496.jpg',32.0),
('P112','The Book Thief','Nazi Germany. The country is holding its breath. Death has never been busier, and will be busier still.By her brother''s graveside, Liesel''s life is changed when she picks up a single object, partially hidden in the snow.','https://images.gr-assets.com/books/1522157426l/19063.jpg',30.0),
('P113','One Flew Over the Cuckoo''s Nest','Tyrannical Nurse Ratched rules her ward in an Oregon State mental hospital with a strict and unbending routine, unopposed by her patients, who remain cowed by mind-numbing medication and the threat of electric shock therapy.','https://images.gr-assets.com/books/1516211014l/332613.jpg',23.0),
('P114','Fifty Shades of Grey','When literature student Anastasia Steele goes to interview young entrepreneur Christian Grey, she encounters a man who is beautiful, brilliant, and intimidating.','https://images.gr-assets.com/books/1385207843l/10818853.jpg', 27.0)
;
INSERT INTO products(id, code, name, description, image_url, price) VALUES
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d001', 'P100', 'The Hunger Games', 'Winning will make you famous. Losing means certain death...', 'https://images.gr-assets.com/books/1447303603l/2767052.jpg', 34.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d002', 'P101', 'To Kill a Mockingbird', 'The unforgettable novel of a childhood in a sleepy Southern town and the crisis of conscience that rocked it...', 'https://images.gr-assets.com/books/1361975680l/2657.jpg', 45.40),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d003', 'P102', 'The Chronicles of Narnia', 'Journeys to the end of the world, fantastic creatures, and epic battles between good and evil—what more could any reader ask for in one book?...', 'https://images.gr-assets.com/books/1449868701l/11127.jpg', 44.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d004', 'P103', 'Gone with the Wind', 'Gone with the Wind is a novel written by Margaret Mitchell, first published in 1936.', 'https://images.gr-assets.com/books/1328025229l/18405.jpg', 44.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d005', 'P104', 'The Fault in Our Stars', 'Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis.', 'https://images.gr-assets.com/books/1360206420l/11870085.jpg', 14.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d006', 'P105', 'The Giving Tree', 'Once there was a tree...and she loved a little boy.', 'https://images.gr-assets.com/books/1174210942l/370493.jpg', 32.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d007', 'P106', 'The Da Vinci Code', 'An ingenious code hidden in the works of Leonardo da Vinci.A desperate race through the cathedrals and castles of Europe', 'https://images.gr-assets.com/books/1303252999l/968.jpg', 14.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d008', 'P107', 'The Alchemist', 'Paulo Coelho''s masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure', 'https://images.gr-assets.com/books/1483412266l/865.jpg', 12.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d009', 'P108', 'Charlotte''s Web', 'This beloved book by E. B. White, author of Stuart Little and The Trumpet of the Swan, is a classic of children''s literature', 'https://images.gr-assets.com/books/1439632243l/24178.jpg', 14.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d010', 'P109', 'The Little Prince', 'Moral allegory and spiritual autobiography, The Little Prince is the most translated book in the French language.', 'https://images.gr-assets.com/books/1367545443l/157993.jpg', 16.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d011', 'P110', 'A Thousand Splendid Suns', 'A Thousand Splendid Suns is a breathtaking story set against the volatile events of Afghanistan''s last thirty years—from the Soviet invasion to the reign of the Taliban to post-Taliban rebuilding—that puts the violence, fear, hope, and faith of this country in intimate, human terms.', 'https://images.gr-assets.com/books/1345958969l/128029.jpg', 15.50),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d012', 'P111', 'A Game of Thrones', 'Here is the first volume in George R. R. Martin’s magnificent cycle of novels that includes A Clash of Kings and A Storm of Swords.', 'https://images.gr-assets.com/books/1436732693l/13496.jpg', 32.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d013', 'P112', 'The Book Thief', 'Nazi Germany. The country is holding its breath. Death has never been busier, and will be busier still.By her brother''s graveside, Liesel''s life is changed when she picks up a single object, partially hidden in the snow.', 'https://images.gr-assets.com/books/1522157426l/19063.jpg', 30.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d014', 'P113', 'One Flew Over the Cuckoo''s Nest', 'Tyrannical Nurse Ratched rules her ward in an Oregon State mental hospital with a strict and unbending routine, unopposed by her patients, who remain cowed by mind-numbing medication and the threat of electric shock therapy.', 'https://images.gr-assets.com/books/1516211014l/332613.jpg', 23.0),
('f1e96c68-1e11-4c4c-b2d7-7c65f3d1d015', 'P114', 'Fifty Shades of Grey', 'When literature student Anastasia Steele goes to interview young entrepreneur Christian Grey, she encounters a man who is beautiful, brilliant, and intimidating.', 'https://images.gr-assets.com/books/1385207843l/10818853.jpg', 27.0);

0 comments on commit fb64206

Please sign in to comment.