#631 - Partial Response : Get video details by id.

This commit is contained in:
Gopinath Langote 2017-09-14 10:09:02 +05:30
parent 5828ef9dd1
commit f38119c565
4 changed files with 99 additions and 1 deletions

View File

@ -10,6 +10,12 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>partial-response</artifactId>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -52,4 +52,16 @@ public class Video {
this.publisher = publisher;
this.status = status;
}
@Override
public String toString() {
return "Video{" +
"id='" + id + '\'' +
", title='" + title + '\'' +
", length=" + length +
", description='" + description + '\'' +
", publisher='" + publisher + '\'' +
", status='" + status + '\'' +
'}';
}
}

View File

@ -1,4 +1,39 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2017 Gopinath Langote
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.iluwatar.partialresponse;
import java.util.Map;
public class VideoResource {
private Map<String, Video> videos;
public VideoResource(Map<String, Video> videos) {
this.videos = videos;
}
public String getDenials(String id) {
return videos.get(id).toString();
}
}

View File

@ -1,5 +1,50 @@
import static org.junit.Assert.*;
/*
* The MIT License (MIT)
*
* Copyright (c) 2017 Gopinath Langote
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.iluwatar.partialresponse;
import org.junit.Before;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
public class VideoResourceTest {
private VideoResource resource;
@Before
public void setUp() {
Map<String, Video> videos = new HashMap<>();
videos.put("1", new Video("1", "title 1", 100L, "", "", ""));
videos.put("1", new Video("2", "title 2", 100L, "", "", ""));
videos.put("1", new Video("3", "title 3", 100L, "", "", ""));
resource = new VideoResource(videos);
}
@Test
public void shouldGiveVideoDetailsById() {
String details = resource.getDenials("1");
System.out.println(details);
}
}