From 018452d01f8b99f5402fc4acc9066ce888e13470 Mon Sep 17 00:00:00 2001 From: stritti Date: Tue, 12 Sep 2017 17:22:39 +0200 Subject: [PATCH 1/6] add offset to classes --- src/main/java/com/sybit/airtable/Query.java | 8 ++ src/main/java/com/sybit/airtable/Table.java | 94 +++++++++++++++++-- .../java/com/sybit/airtable/vo/Records.java | 9 ++ 3 files changed, 104 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/sybit/airtable/Query.java b/src/main/java/com/sybit/airtable/Query.java index 9d5eab4..5054020 100644 --- a/src/main/java/com/sybit/airtable/Query.java +++ b/src/main/java/com/sybit/airtable/Query.java @@ -47,4 +47,12 @@ public interface Query { * @return get the filter formula. */ String filterByFormula(); + + /** + * Offset to get more than 100 records. + * + * The offset is provided by previous result. + * @return + */ + String getOffset(); } diff --git a/src/main/java/com/sybit/airtable/Table.java b/src/main/java/com/sybit/airtable/Table.java index c5409a5..c32e123 100644 --- a/src/main/java/com/sybit/airtable/Table.java +++ b/src/main/java/com/sybit/airtable/Table.java @@ -24,6 +24,7 @@ import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; +import java.util.Collection; import java.util.List; import java.util.Map; @@ -79,6 +80,7 @@ public void setParent(Base parent) { * * @return List of all items. * @throws AirtableException + * @throws org.apache.http.client.HttpResponseException */ public List select() throws AirtableException, HttpResponseException { return select(new Query() { @@ -111,6 +113,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } + + @Override + public String getOffset() { + return null; + } }); } @@ -123,16 +130,17 @@ public Integer getPageSize() { * @throws AirtableException */ @SuppressWarnings("WeakerAccess") - public List select(Query query) throws AirtableException { + public List select(final Query query) throws AirtableException { HttpResponse response; try { - GetRequest request = Unirest.get(getTableEndpointUrl()) + final GetRequest request = Unirest.get(getTableEndpointUrl()) .header("accept", "application/json") .header("Authorization", getBearerToken()); + if(query.getFields() != null && query.getFields().length > 0){ String[] fields = query.getFields(); - for (int i = 0; i < fields.length; i++) { - request.queryString("fields[]",fields[i]); + for (String field : fields) { + request.queryString("fields[]", field); } } if(query.getMaxRecords() != null) { @@ -171,12 +179,65 @@ public List select(Query query) throws AirtableException { List list = null; if(200 == code) { list = getList(response); + + final String offset = response.getBody().getOffset(); + + if(offset != null) { + list.addAll(this.select(query, offset)); + } } else { HttpResponseExceptionHandler.onResponse(response); } return list; } + + /** + * Get List with offset. + * + * @param query + * @param offset + * @return + * @throws AirtableException + */ + private List select(Query query, String offset) throws AirtableException { + return select(new Query() { + @Override + public Integer getMaxRecords() { + return query.getMaxRecords(); + } + + @Override + public String getView() { + return query.getView(); + } + + @Override + public List getSort() { + return query.getSort(); + } + + @Override + public String filterByFormula() { + return query.filterByFormula(); + } + + @Override + public String[] getFields() { + return query.getFields(); + } + + @Override + public Integer getPageSize() { + return query.getPageSize(); + } + + @Override + public String getOffset() { + return offset; + } + }); + } /** * select with Parameter maxRecords @@ -217,6 +278,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } + + @Override + public String getOffset() { + return null; + } }); } @@ -258,6 +324,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } + + @Override + public String getOffset() { + return null; + } }); } @@ -303,6 +374,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } + + @Override + public String getOffset() { + return null; + } }); } @@ -346,6 +422,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } + + @Override + public String getOffset() { + return null; + } }); } @@ -735,9 +816,7 @@ private String getIdOfItem(T item) throws AirtableException, IllegalAccessExcept * @throws NoSuchMethodException */ private T filterFields(T item) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException { - - System.out.println(item); - + Field[] attributes = item.getClass().getDeclaredFields(); for (Field attribute : attributes) { @@ -749,4 +828,5 @@ private T filterFields(T item) throws IllegalAccessException, InvocationTargetEx return item; } + } diff --git a/src/main/java/com/sybit/airtable/vo/Records.java b/src/main/java/com/sybit/airtable/vo/Records.java index 9be0c4d..75a090a 100644 --- a/src/main/java/com/sybit/airtable/vo/Records.java +++ b/src/main/java/com/sybit/airtable/vo/Records.java @@ -15,6 +15,8 @@ public class Records { private List> records; + + private String offset; public List> getRecords() { return records; @@ -24,4 +26,11 @@ public void setRecords(List> records) { this.records = records; } + public String getOffset() { + return offset; + } + + public void setOffset(String offset) { + this.offset = offset; + } } From 5e4797bf807e8c6f852868f899e571bf5f64c463 Mon Sep 17 00:00:00 2001 From: fzr Date: Wed, 13 Sep 2017 12:40:35 +0200 Subject: [PATCH 2/6] Tests angepasst - Mocklab - WiremockFiles behalten --- build.gradle | 2 +- .../sybit/airtable/TableConverterTest.java | 28 +- .../sybit/airtable/TableCreateRecordTest.java | 33 +- .../com/sybit/airtable/TableDestroyTest.java | 20 +- .../com/sybit/airtable/TableFindTest.java | 8 +- .../sybit/airtable/TableParameterTest.java | 138 +++++--- .../airtable/TableSelectJacksonOMTest.java | 44 +-- .../com/sybit/airtable/TableSelectTest.java | 40 +-- .../com/sybit/airtable/TableUpdateTest.java | 3 +- .../sybit/airtable/mock/WireMockBaseTest.java | 20 +- src/itest/resources/WireMock-Recording.cmd | 5 +- src/main/java/com/sybit/airtable/Table.java | 295 +++++++++--------- 12 files changed, 320 insertions(+), 316 deletions(-) diff --git a/build.gradle b/build.gradle index 1607991..34485fe 100644 --- a/build.gradle +++ b/build.gradle @@ -100,7 +100,7 @@ dependencies { testCompile group: 'junit', name: 'junit', version:'4.12' testCompile group: 'commons-io', name: 'commons-io', version:'2.5' - testCompile group: 'com.github.tomakehurst', name: 'wiremock', version:'2.5.1' + testCompile group: 'com.github.tomakehurst', name: 'wiremock', version:'2.8.0' testCompile group: 'org.slf4j', name: 'slf4j-jdk14', version:'1.7.25' codacy group: 'com.codacy', name: 'codacy-coverage-reporter', version: '1.0.13' diff --git a/src/itest/java/com/sybit/airtable/TableConverterTest.java b/src/itest/java/com/sybit/airtable/TableConverterTest.java index 5905e20..e563df6 100644 --- a/src/itest/java/com/sybit/airtable/TableConverterTest.java +++ b/src/itest/java/com/sybit/airtable/TableConverterTest.java @@ -32,15 +32,13 @@ public class TableConverterTest extends WireMockBaseTest { @Test public void testConvertMovie() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); Table movieTable = base.table("Movies", Movie.class); - Movie movie = movieTable.find("rec6733da527dd0f1"); + Movie movie = movieTable.find("recFj9J78MLtiFFMz"); assertNotNull(movie); - assertEquals(movie.getId(),"rec6733da527dd0f1"); + assertEquals(movie.getId(),"recFj9J78MLtiFFMz"); assertEquals(movie.getName(),"The Godfather"); - assertEquals(movie.getDescription(),"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selli..."); assertEquals(movie.getPhotos().size(),2); assertEquals(movie.getDirector().size(),1); assertEquals(movie.getActors().size(),2); @@ -53,10 +51,8 @@ public void testConvertMovie() throws AirtableException, HttpResponseException { public void testConvertAttachement() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - Table movieTable = base.table("Movies", Movie.class); - Movie movie = movieTable.find("rec6733da527dd0f1"); + Movie movie = movieTable.find("recFj9J78MLtiFFMz"); assertNotNull(movie); assertEquals(movie.getPhotos().size(),2); @@ -66,10 +62,10 @@ public void testConvertAttachement() throws AirtableException, HttpResponseExcep Attachment photo2 = movie.getPhotos().get(0); assertNotNull(photo2); - assertEquals(photo1.getId(),"att6dba4af5786df1"); - assertEquals(photo1.getUrl(),"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k"); - assertEquals(photo1.getFilename(),"220px-TheGodfatherAlPacinoMarlonBrando.jpg"); - assertEquals(photo1.getSize(),16420.0,0); + assertEquals(photo1.getId(),"attk3WY5B28GVcFGU"); + assertEquals(photo1.getUrl(),"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg"); + assertEquals(photo1.getFilename(),"AlPacinoandMarlonBrando.jpg"); + assertEquals(photo1.getSize(),35698,0); assertEquals(photo1.getType(),"image/jpeg"); assertEquals(photo1.getThumbnails().size(),2); @@ -77,20 +73,18 @@ public void testConvertAttachement() throws AirtableException, HttpResponseExcep @Test public void testConvertThumbnails() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); - + Table movieTable = base.table("Movies", Movie.class); - Movie movie = movieTable.find("rec6733da527dd0f1"); + Movie movie = movieTable.find("recFj9J78MLtiFFMz"); assertNotNull(movie); assertEquals(movie.getPhotos().get(0).getThumbnails().size(),2); assertEquals(movie.getPhotos().get(1).getThumbnails().size(),2); Map thumbnails = movie.getPhotos().get(1).getThumbnails(); Thumbnail thumb = thumbnails.get("small"); - assertEquals(thumb.getUrl(),"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg"); + assertEquals(thumb.getUrl(),"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg"); assertEquals(thumb.getHeight(),36.0, 0); - assertEquals(thumb.getWidth(),48.0, 0); + assertEquals(thumb.getWidth(),24.0, 0); } diff --git a/src/itest/java/com/sybit/airtable/TableCreateRecordTest.java b/src/itest/java/com/sybit/airtable/TableCreateRecordTest.java index 89dc086..5dcdc59 100644 --- a/src/itest/java/com/sybit/airtable/TableCreateRecordTest.java +++ b/src/itest/java/com/sybit/airtable/TableCreateRecordTest.java @@ -29,7 +29,6 @@ public class TableCreateRecordTest extends WireMockBaseTest { @Test(expected = AirtableException.class) public void createMovieWithPhotoIdTest() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { - Base base = airtable.base("appe9941ff07fffcc"); Table movieTable = base.table("Movies", Movie.class); Movie newMovie = new Movie(); @@ -51,9 +50,7 @@ public void createMovieWithPhotoIdTest() throws AirtableException, IllegalAccess @Test(expected = AirtableException.class) public void createMovieWithIdTest() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InstantiationException, NoSuchFieldException{ - - Base base = airtable.base("appe9941ff07fffcc"); - + Table movieTable = base.table("Movies", Movie.class); Movie newMovie = new Movie(); newMovie.setName("Neuer Film"); @@ -64,9 +61,7 @@ public void createMovieWithIdTest() throws AirtableException, IllegalAccessExcep @Test(expected = AirtableException.class) public void createMovieWithCreatedTimeTest() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InstantiationException, NoSuchFieldException{ - - Base base = airtable.base("appe9941ff07fffcc"); - + Table movieTable = base.table("Movies", Movie.class); Movie newMovie = new Movie(); newMovie.setName("Neuer Film"); @@ -77,23 +72,19 @@ public void createMovieWithCreatedTimeTest() throws AirtableException, IllegalAc @Test public void createActorTest() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InstantiationException, NoSuchFieldException{ - - Base base = airtable.base("appe9941ff07fffcc"); - + Table actorTable = base.table("Actors", Actor.class); Actor newActor = new Actor(); newActor.setName("Neuer Actor"); Actor test = actorTable.create(newActor); assertEquals(test.getName(),newActor.getName()); - assertEquals(test.getId(),"rec123456789"); - + assertNotNull(test.getId()); + } @Test public void createMovieWithAttachementTest() throws AirtableException, IllegalAccessException, NoSuchMethodException, NoSuchMethodException, InstantiationException, InvocationTargetException, NoSuchFieldException { - - Base base = airtable.base("appe9941ff07fffcc"); - + Table movieTable = base.table("Movies", Movie.class); Movie newMovie = new Movie(); @@ -121,20 +112,18 @@ public void createMovieWithAttachementTest() throws AirtableException, IllegalAc @Test public void createMovieTest() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InstantiationException, NoSuchFieldException{ - - Base base = airtable.base("appe9941ff07fffcc"); - + Table movieTable = base.table("Movies", Movie.class); Movie newMovie = new Movie(); newMovie.setName("Neuer Film"); newMovie.setDescription("Irgendwas"); List director = new ArrayList<>(); - director.add("recfaf64fe0db19a9"); + director.add("recPxOZblV8yJU4mY"); newMovie.setDirector(director); List actors = new ArrayList<>(); - actors.add("recc8841a14245b0b"); - actors.add("rec514228ed76ced1"); + actors.add("recEtUIW6FWtbEDKz"); + actors.add("recInYFZ1DQpeCuSz"); newMovie.setActors(actors); List genre = new ArrayList<>(); genre.add("Drama"); @@ -146,7 +135,7 @@ public void createMovieTest() throws AirtableException, IllegalAccessException, assertEquals(newMovie.getActors(),test.getActors()); assertEquals(newMovie.getGenre(),test.getGenre()); assertEquals(newMovie.getDescription(),test.getDescription()); - assertEquals("rec987654321",test.getId()); + assertNotNull(test.getId()); assertNotNull(test.getCreatedTime()); diff --git a/src/itest/java/com/sybit/airtable/TableDestroyTest.java b/src/itest/java/com/sybit/airtable/TableDestroyTest.java index 682d8c8..16ad15f 100644 --- a/src/itest/java/com/sybit/airtable/TableDestroyTest.java +++ b/src/itest/java/com/sybit/airtable/TableDestroyTest.java @@ -23,20 +23,18 @@ public class TableDestroyTest extends WireMockBaseTest { - @Test - public void testDestroyMovie() throws AirtableException, HttpResponseException{ - - Base base = airtable.base("appe9941ff07fffcc"); - Table actorTable = base.table("Actors", Actor.class); - - actorTable.destroy("recapJ3Js8AEwt0Bf"); - - } +// @Test +// public void testDestroyMovie() throws AirtableException, HttpResponseException{ +// +// Table actorTable = base.table("Actors", Actor.class); +// +// actorTable.destroy("recAt6z10EYD6NtEH"); +// +// } @Test (expected = AirtableException.class) public void testDestroyMovieException() throws AirtableException{ - - Base base = airtable.base("appe9941ff07fffcc"); + Table actorTable = base.table("Actors", Actor.class); actorTable.destroy("not succesfull"); diff --git a/src/itest/java/com/sybit/airtable/TableFindTest.java b/src/itest/java/com/sybit/airtable/TableFindTest.java index 5ba85de..59146ec 100644 --- a/src/itest/java/com/sybit/airtable/TableFindTest.java +++ b/src/itest/java/com/sybit/airtable/TableFindTest.java @@ -25,20 +25,16 @@ public class TableFindTest extends WireMockBaseTest { @Test public void testFind() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - Table actorTable = base.table("Actors", Actor.class); - Actor actor = actorTable.find("rec514228ed76ced1"); + Actor actor = actorTable.find("recEtUIW6FWtbEDKz"); assertNotNull(actor); - assertEquals("rec514228ed76ced1", actor.getId()); + assertEquals("recEtUIW6FWtbEDKz", actor.getId()); assertEquals("Marlon Brando", actor.getName()); } @Test(expected = AirtableException.class) public void testFindNotFound() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - Table actorTable = base.table("Actors", Actor.class); Actor actor = actorTable.find("notexistend"); assertNotNull(actor); diff --git a/src/itest/java/com/sybit/airtable/TableParameterTest.java b/src/itest/java/com/sybit/airtable/TableParameterTest.java index 3b8b1a2..d6f628e 100644 --- a/src/itest/java/com/sybit/airtable/TableParameterTest.java +++ b/src/itest/java/com/sybit/airtable/TableParameterTest.java @@ -24,30 +24,77 @@ * @author fzr */ public class TableParameterTest extends WireMockBaseTest { - + @Test - public void fieldsParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + public void offsetParamTest() throws AirtableException, HttpResponseException { + Table movieTable = base.table("Movies", Movie.class); + + Query query = new Query() { + @Override + public String[] getFields() { + return null; + } + + @Override + public Integer getPageSize() { + return 3; + } + + @Override + public Integer getMaxRecords() { + return null; + } + + @Override + public String getView() { + return null; + } + + @Override + public List getSort() { + return null; + } + + @Override + public String filterByFormula() { + return null; + } + + @Override + public String getOffset() { + return null; + } + }; + + List listMovies = movieTable.select(query); + System.out.println(listMovies); + + } + + @Test + public void fieldsParamTest() throws AirtableException, HttpResponseException { + + Table movieTable = base.table("Movies", Movie.class); + String[] fields = new String[1]; fields[0] = "Name"; - + List listMovies = movieTable.select(fields); assertNotNull(listMovies); + assertNotNull(listMovies.get(0).getName()); assertNull(listMovies.get(0).getDirector()); assertNull(listMovies.get(0).getActors()); assertNull(listMovies.get(0).getDescription()); - + } - + @Test public void formulaParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + Table movieTable = base.table("Movies", Movie.class); - + Query query = new Query() { @Override public String[] getFields() { @@ -78,35 +125,36 @@ public List getSort() { public String filterByFormula() { return "NOT({Name} = '')"; } + + @Override + public String getOffset() { + return null; + } }; - + List listMovies = movieTable.select(query); assertNotNull(listMovies); - assertEquals(listMovies.size(),2); - - + assertEquals(listMovies.size(), 9); } - + @Test public void maxRecordsParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + Table movieTable = base.table("Movies", Movie.class); - + int maxRecords = 2; - + List listMovies = movieTable.select(maxRecords); assertNotNull(listMovies); - assertEquals(listMovies.size(),2); - + assertEquals(listMovies.size(), 2); + } - + @Test public void pageSizeParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + Table movieTable = base.table("Movies", Movie.class); - + Query query = new Query() { @Override public String[] getFields() { @@ -137,42 +185,42 @@ public List getSort() { public String filterByFormula() { return null; } + + @Override + public String getOffset() { + return null; + } }; - + List listMovies = movieTable.select(query); assertNotNull(listMovies); - + assertEquals(listMovies.size(), 9); + } - + @Test public void sortParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + Table movieTable = base.table("Movies", Movie.class); Sort sort = new Sort("Name", Sort.Direction.desc); - + List listMovies = movieTable.select(sort); assertNotNull(listMovies); - assertEquals(listMovies.get(9).getName(),"Billy Madison"); - - + assertEquals(listMovies.get(8).getName(), "Billy Madison"); + } - + @Test public void viewParamTest() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); + Table movieTable = base.table("Movies", Movie.class); - + String view = "Dramas"; - - + List listMovies = movieTable.select(view); assertNotNull(listMovies); - assertEquals(listMovies.size(),5); - + assertEquals(listMovies.size(), 5); + } - - - + } diff --git a/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java b/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java index 709e6ef..4c83aa6 100644 --- a/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java +++ b/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java @@ -49,69 +49,63 @@ public String writeValue(final Object value) { } } }); - airtable.setEndpointUrl("http://localhost:8080/v0"); + airtable.setEndpointUrl("http://airtable.mocklab.io"); + this.base = airtable.base("appTtHA5PfJnVfjdu"); //set 404 as default - stubFor(any(anyUrl()) - .atPriority(10) - .willReturn(aResponse() - .withStatus(404) - .withBody("{\"error\":{\"type\":\"NOT_FOUND\",\"message\":\"Not found\"}}"))); +// stubFor(any(anyUrl()) +// .atPriority(10) +// .willReturn(aResponse() +// .withStatus(404) +// .withBody("{\"error\":{\"type\":\"NOT_FOUND\",\"message\":\"Not found\"}}"))); } @Test public void testSelectTable() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); List retval = base.table("Movies", Movie.class).select(); assertNotNull(retval); - assertEquals(10, retval.size()); - Movie mov = retval.get(0); - assertEquals("Sister Act", mov.getName()); + assertEquals(9, retval.size()); + } @Test public void testSelectTableMaxRecords() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); List retval = base.table("Movies", Movie.class).select(2); assertNotNull(retval); assertEquals(2, retval.size()); - Movie mov = retval.get(0); - assertEquals("Sister Act", mov.getName()); + } @Test public void testSelectTableSorted() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); Table table = base.table("Movies", Movie.class); List retval = table.select(new Sort("Name", Sort.Direction.asc)); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); Movie mov = retval.get(0); assertEquals("Billy Madison", mov.getName()); retval = table.select(new Sort("Name", Sort.Direction.desc)); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); mov = retval.get(0); - assertEquals("You've got Mail", mov.getName()); + assertEquals("You've Got Mail", mov.getName()); } @Test public void testSelectTableView() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - List retval = base.table("Movies", Movie.class).select("Main View"); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); Movie mov = retval.get(0); assertEquals("The Godfather", mov.getName()); } @@ -119,20 +113,10 @@ public void testSelectTableView() throws AirtableException, HttpResponseExceptio @Test(expected = AirtableException.class) public void testSelectNonExistingTable() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); List retval = base.table("NotExists", Movie.class).select(); assertNotNull(retval); } - @Test - public void testSelectWithSerializedNames() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); - - List retval = base.table("SerializedNames", ActorSerializedNames.class).select(); - assertNotNull(retval); - assertEquals("Marlon Brando", retval.get(0).getName()); - } } diff --git a/src/itest/java/com/sybit/airtable/TableSelectTest.java b/src/itest/java/com/sybit/airtable/TableSelectTest.java index de899c6..1ff3fc2 100644 --- a/src/itest/java/com/sybit/airtable/TableSelectTest.java +++ b/src/itest/java/com/sybit/airtable/TableSelectTest.java @@ -30,55 +30,48 @@ public class TableSelectTest extends WireMockBaseTest { @Test public void testSelectTable() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); List retval = base.table("Movies", Movie.class).select(); assertNotNull(retval); - assertEquals(10, retval.size()); - Movie mov = retval.get(0); - assertEquals("Sister Act", mov.getName()); + assertEquals(9, retval.size()); + } @Test public void testSelectTableMaxRecords() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - List retval = base.table("Movies", Movie.class).select(2); assertNotNull(retval); assertEquals(2, retval.size()); - Movie mov = retval.get(0); - assertEquals("Sister Act", mov.getName()); + } @Test public void testSelectTableSorted() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); Table table = base.table("Movies", Movie.class); List retval = table.select(new Sort("Name", Sort.Direction.asc)); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); Movie mov = retval.get(0); assertEquals("Billy Madison", mov.getName()); retval = table.select(new Sort("Name", Sort.Direction.desc)); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); mov = retval.get(0); - assertEquals("You've got Mail", mov.getName()); + assertEquals("You've Got Mail", mov.getName()); } @Test public void testSelectTableView() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); List retval = base.table("Movies", Movie.class).select("Main View"); assertNotNull(retval); - assertEquals(10, retval.size()); + assertEquals(9, retval.size()); Movie mov = retval.get(0); assertEquals("The Godfather", mov.getName()); } @@ -86,19 +79,16 @@ public void testSelectTableView() throws AirtableException, HttpResponseExceptio @Test(expected = AirtableException.class) public void testSelectNonExistingTable() throws AirtableException, HttpResponseException { - Base base = airtable.base("appe9941ff07fffcc"); - List retval = base.table("NotExists", Movie.class).select(); assertNotNull(retval); } - @Test - public void testSelectWithSerializedNames() throws AirtableException, HttpResponseException { - - Base base = airtable.base("appe9941ff07fffcc"); - - List retval = base.table("SerializedNames", ActorSerializedNames.class).select(); - assertNotNull(retval); - assertEquals("Marlon Brando", retval.get(0).getName()); - } +// @Test +// public void testSelectWithSerializedNames() throws AirtableException, HttpResponseException { +// +// +// List retval = base.table("SerializedNames", ActorSerializedNames.class).select(); +// assertNotNull(retval); +// assertEquals("Marlon Brando", retval.get(0).getName()); +// } } diff --git a/src/itest/java/com/sybit/airtable/TableUpdateTest.java b/src/itest/java/com/sybit/airtable/TableUpdateTest.java index 065b94c..7d87545 100644 --- a/src/itest/java/com/sybit/airtable/TableUpdateTest.java +++ b/src/itest/java/com/sybit/airtable/TableUpdateTest.java @@ -24,11 +24,10 @@ public class TableUpdateTest extends WireMockBaseTest { @Test public void testUpdateActor() throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException{ - Base base = airtable.base("appe9941ff07fffcc"); Table actorTable = base.table("Actors", Actor.class); Actor marlonBrando = new Actor(); - marlonBrando.setId("rec514228ed76ced1"); + marlonBrando.setId("recEtUIW6FWtbEDKz"); marlonBrando.setName("Neuer Name"); Actor updated = actorTable.update(marlonBrando); diff --git a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java index 9f9a24c..4eebaa9 100644 --- a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java +++ b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java @@ -14,6 +14,7 @@ import static com.github.tomakehurst.wiremock.client.WireMock.*; import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; +import com.sybit.airtable.Base; /** * Base Class to test using WireMock. @@ -23,22 +24,25 @@ */ public class WireMockBaseTest { - @Rule - public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().port(8080)); +// @Rule +// public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().port(8080)); protected Airtable airtable = new Airtable(); + protected Base base; @Before public void setup() throws AirtableException { + airtable.configure(); - airtable.setEndpointUrl("http://localhost:8080/v0"); + this.base = airtable.base("appTtHA5PfJnVfjdu"); + airtable.setEndpointUrl("http://airtable.mocklab.io"); //set 404 as default - stubFor(any(anyUrl()) - .atPriority(10) - .willReturn(aResponse() - .withStatus(404) - .withBody("{\"error\":{\"type\":\"NOT_FOUND\",\"message\":\"Not found\"}}"))); +// stubFor(any(anyUrl()) +// .atPriority(10) +// .willReturn(aResponse() +// .withStatus(404) +// .withBody("{\"error\":{\"type\":\"NOT_FOUND\",\"message\":\"Not found\"}}"))); } diff --git a/src/itest/resources/WireMock-Recording.cmd b/src/itest/resources/WireMock-Recording.cmd index 00c1dc9..94cfd70 100644 --- a/src/itest/resources/WireMock-Recording.cmd +++ b/src/itest/resources/WireMock-Recording.cmd @@ -1,7 +1,6 @@ java -Dhttp.proxyHost=192.168.1.254 -Dhttp.proxyPort=8080 ^ -Dhttps.proxyHost=192.168.1.254 -Dhttps.proxyPort=8080 ^ -Dhttp.nonProxyHosts="localhost|127.0.0.1" ^ - -jar ../../../bin/wiremock-standalone-2.5.1.jar ^ + -jar ../../../bin/wiremock-standalone-2.8.0.jar ^ --proxy-all="https://api.airtable.com" --port=8080 ^ - --record-mappings --verbose --preserve-host-header ^ - --enable-browser-proxying \ No newline at end of file + --verbose \ No newline at end of file diff --git a/src/main/java/com/sybit/airtable/Table.java b/src/main/java/com/sybit/airtable/Table.java index c32e123..6fd8cfa 100644 --- a/src/main/java/com/sybit/airtable/Table.java +++ b/src/main/java/com/sybit/airtable/Table.java @@ -35,10 +35,10 @@ */ public class Table { - private static final Logger LOG = LoggerFactory.getLogger( Table.class ); + private static final Logger LOG = LoggerFactory.getLogger(Table.class); private final String name; - private final Class type; + private final Class type; private Base parent; @@ -62,7 +62,7 @@ public Table(String name, Class type) { * @param base */ @SuppressWarnings("WeakerAccess") - public Table(String name, Class type, Base base){ + public Table(String name, Class type, Base base) { this(name, type); setParent(base); } @@ -135,54 +135,57 @@ public List select(final Query query) throws AirtableException { try { final GetRequest request = Unirest.get(getTableEndpointUrl()) .header("accept", "application/json") - .header("Authorization", getBearerToken()); - - if(query.getFields() != null && query.getFields().length > 0){ + .header("Authorization", getBearerToken()) + .header("Content-type" , "application/json"); + + if (query.getFields() != null && query.getFields().length > 0) { String[] fields = query.getFields(); for (String field : fields) { request.queryString("fields[]", field); - } + } } - if(query.getMaxRecords() != null) { + if (query.getMaxRecords() != null) { request.queryString("maxRecords", query.getMaxRecords()); } - if(query.getView() != null) { + if (query.getView() != null) { request.queryString("view", query.getView()); } - if(query.filterByFormula() != null) { + if (query.filterByFormula() != null) { request.queryString("filterByFormula", query.filterByFormula()); } - if(query.getPageSize() != null){ + if (query.getPageSize() != null) { if (query.getPageSize() > 100) { - request.queryString("pageSize",100); + request.queryString("pageSize", 100); } else { - request.queryString("pageSize",query.getPageSize()); - } + request.queryString("pageSize", query.getPageSize()); + } } - if(query.getSort() != null) { + if (query.getSort() != null) { int i = 0; for (Sort sort : query.getSort()) { request.queryString("sort[" + i + "][field]", sort.getField()); request.queryString("sort[" + i + "][direction]", sort.getDirection()); } } + if (query.getOffset()!= null) { + request.queryString("offset", query.getOffset()); + } LOG.debug("URL=" + request.getUrl()); response = request.asObject(Records.class); - } - catch (UnirestException e) { + } catch (UnirestException e) { throw new AirtableException(e); } int code = response.getStatus(); List list = null; - if(200 == code) { + if (200 == code) { list = getList(response); - + final String offset = response.getBody().getOffset(); - - if(offset != null) { + + if (offset != null) { list.addAll(this.select(query, offset)); } } else { @@ -191,14 +194,14 @@ public List select(final Query query) throws AirtableException { return list; } - + /** * Get List with offset. - * + * * @param query * @param offset * @return - * @throws AirtableException + * @throws AirtableException */ private List select(Query query, String offset) throws AirtableException { return select(new Query() { @@ -237,15 +240,15 @@ public String getOffset() { return offset; } }); - } + } /** * select with Parameter maxRecords - * + * * @param maxRecords * @return * @throws AirtableException - * @throws HttpResponseException + * @throws HttpResponseException */ public List select(Integer maxRecords) throws AirtableException, HttpResponseException { return select(new Query() { @@ -278,22 +281,23 @@ public String[] getFields() { public Integer getPageSize() { return null; } - + @Override public String getOffset() { return null; - } + } }); } /** * Select data of table by definied view. + * * @param view * @return * @throws AirtableException * @throws HttpResponseException */ - public List select(String view) throws AirtableException, HttpResponseException { + public List select(String view) throws AirtableException, HttpResponseException { return select(new Query() { @Override public Integer getMaxRecords() { @@ -324,17 +328,17 @@ public String[] getFields() { public Integer getPageSize() { return null; } - + @Override public String getOffset() { return null; - } + } }); } /** - *select Table data with defined sortation - * + * select Table data with defined sortation + * * @param sortation * @return * @throws AirtableException @@ -374,21 +378,21 @@ public String[] getFields() { public Integer getPageSize() { return null; } - + @Override public String getOffset() { return null; - } + } }); } - + /** * Select only Table data with defined fields. * * @param fields array of requested fields. * @return list of item using only requested fields. * @throws AirtableException - * @throws HttpResponseException + * @throws HttpResponseException */ public List select(String[] fields) throws AirtableException, HttpResponseException { @@ -422,11 +426,11 @@ public String[] getFields() { public Integer getPageSize() { return null; } - + @Override public String getOffset() { return null; - } + } }); } @@ -441,7 +445,7 @@ private List getList(HttpResponse response) { final Records records = response.getBody(); final List list = new ArrayList<>(); - for(Map record : records.getRecords()) { + for (Map record : records.getRecords()) { T item = null; try { item = transform(record, this.type.newInstance()); @@ -466,16 +470,16 @@ public T find(String id) throws AirtableException { HttpResponse response; try { - response = Unirest.get( getTableEndpointUrl() + "/" + id) - .header("accept", "application/json") - .header("Authorization", getBearerToken()) - .asObject(RecordItem.class); + response = Unirest.get(getTableEndpointUrl() + "/" + id) + .header("accept", "application/json") + .header("Authorization", getBearerToken()) + .asObject(RecordItem.class); } catch (UnirestException e) { throw new AirtableException(e); } int code = response.getStatus(); - if(200 == code) { + if (200 == code) { body = response.getBody(); } else { HttpResponseExceptionHandler.onResponse(response); @@ -483,95 +487,95 @@ public T find(String id) throws AirtableException { } try { - return transform(body, this.type.newInstance() ); + return transform(body, this.type.newInstance()); } catch (InvocationTargetException | IllegalAccessException | InstantiationException e) { throw new AirtableException(e); } } - + /** * Create Record of given Item - * + * * @param item the item to be created * @return the created item * @throws AirtableException * @throws IllegalAccessException * @throws InvocationTargetException - * @throws NoSuchMethodException + * @throws NoSuchMethodException */ public T create(T item) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { - + RecordItem responseBody = null; - + checkProperties(item); - + PostRecord body = new PostRecord(); body.setFields(item); - + HttpResponse response; try { - response = Unirest.post( getTableEndpointUrl()) - .header("accept", "application/json") - .header("Authorization", getBearerToken()) - .header("Content-type","application/json") - .body(body) - .asObject(RecordItem.class); + response = Unirest.post(getTableEndpointUrl()) + .header("accept", "application/json") + .header("Authorization", getBearerToken()) + .header("Content-type", "application/json") + .body(body) + .asObject(RecordItem.class); } catch (UnirestException e) { throw new AirtableException(e); } - + int code = response.getStatus(); - if(200 == code) { + if (200 == code) { responseBody = response.getBody(); } else { HttpResponseExceptionHandler.onResponse(response); } try { - return transform(responseBody, this.type.newInstance() ); + return transform(responseBody, this.type.newInstance()); } catch (InvocationTargetException | IllegalAccessException | InstantiationException e) { LOG.error(e.getMessage(), e); } - + return null; } public T update(T item) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { - + RecordItem responseBody = null; - + String id = getIdOfItem(item); - + PostRecord body = new PostRecord(); body.setFields(filterFields(item)); - + HttpResponse response; try { - response = Unirest.patch( getTableEndpointUrl()+"/"+id) - .header("accept", "application/json") - .header("Authorization", getBearerToken()) - .header("Content-type","application/json") - .body(body) - .asObject(RecordItem.class); + response = Unirest.patch(getTableEndpointUrl() + "/" + id) + .header("accept", "application/json") + .header("Authorization", getBearerToken()) + .header("Content-type", "application/json") + .body(body) + .asObject(RecordItem.class); } catch (UnirestException e) { throw new AirtableException(e); } - + int code = response.getStatus(); - if(200 == code) { + if (200 == code) { responseBody = response.getBody(); } else { HttpResponseExceptionHandler.onResponse(response); } try { - return transform(responseBody, this.type.newInstance() ); + return transform(responseBody, this.type.newInstance()); } catch (InvocationTargetException | IllegalAccessException | InstantiationException e) { LOG.error(e.getMessage(), e); } - + return null; } @@ -580,38 +584,37 @@ public T replace(T item) { throw new UnsupportedOperationException("not yet implemented"); } - + /** * Delete Record by given id - * + * * @param id - * @throws AirtableException + * @throws AirtableException */ - public void destroy(String id) throws AirtableException { - + Delete body = null; HttpResponse response; try { response = Unirest.delete(getTableEndpointUrl() + "/" + id) - .header("accept", "application/json") - .header("Authorization", getBearerToken()) - .asObject(Delete.class); + .header("accept", "application/json") + .header("Authorization", getBearerToken()) + .asObject(Delete.class); } catch (UnirestException e) { throw new AirtableException(e); } int code = response.getStatus(); - if(200 == code) { + if (200 == code) { body = response.getBody(); } else { HttpResponseExceptionHandler.onResponse(response); } - if(!body.isDeleted()){ - throw new AirtableException("Record id: "+body.getId()+" could not be deleted."); - } + if (!body.isDeleted()) { + throw new AirtableException("Record id: " + body.getId() + " could not be deleted."); + } } /** @@ -650,10 +653,10 @@ private String getBearerToken() { * @throws InstantiationException */ private T transform(Map record, T retval) throws InvocationTargetException, IllegalAccessException { - for(String key: record.keySet()) { - if("fields".equals(key)) { + for (String key : record.keySet()) { + if ("fields".equals(key)) { //noinspection unchecked - retval = transform((Map)record.get("fields"), retval); + retval = transform((Map) record.get("fields"), retval); } else { setProperty(retval, key, record.get(key)); } @@ -690,18 +693,18 @@ private T transform(RecordItem record, T retval) throws InvocationTargetExceptio private void setProperty(T retval, String key, Object value) throws IllegalAccessException, InvocationTargetException { String property = key2property(key); - for (Field f: this.type.getDeclaredFields()) { + for (Field f : this.type.getDeclaredFields()) { final SerializedName annotation = f.getAnnotation(SerializedName.class); - if(annotation != null && property.equalsIgnoreCase(annotation.value())){ - property = f.getName(); - break; + if (annotation != null && property.equalsIgnoreCase(annotation.value())) { + property = f.getName(); + break; } } if (propertyExists(retval, property)) { BeanUtils.setProperty(retval, property, value); - }else { + } else { LOG.warn(retval.getClass() + " does not support public setter for existing property [" + property + "]"); } } @@ -713,13 +716,13 @@ private void setProperty(T retval, String key, Object value) throws IllegalAcces * @return */ private String key2property(String key) { - - if(key.contains(" ") || key.contains("-") ) { - LOG.warn( "Annotate columns having special characters by using @SerializedName for property: [" + key + "]"); + + if (key.contains(" ") || key.contains("-")) { + LOG.warn("Annotate columns having special characters by using @SerializedName for property: [" + key + "]"); } String property = key.trim(); - property = property.substring(0,1).toLowerCase() + property.substring(1, property.length()); - + property = property.substring(0, 1).toLowerCase() + property.substring(1, property.length()); + return property; } @@ -730,102 +733,102 @@ private String key2property(String key) { * @param property name of property * @return true if writable property exists. */ - private static boolean propertyExists (Object bean, String property) { - return PropertyUtils.isReadable(bean, property) && - PropertyUtils.isWriteable(bean, property); + private static boolean propertyExists(Object bean, String property) { + return PropertyUtils.isReadable(bean, property) + && PropertyUtils.isWriteable(bean, property); } /** * Checks if the Property Values of the item are valid for the Request. - * + * * @param item * @throws AirtableException * @throws IllegalAccessException * @throws InvocationTargetException - * @throws NoSuchMethodException + * @throws NoSuchMethodException */ private void checkProperties(T item) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { - - if(propertyExists(item,"id") || propertyExists(item,"createdTime")){ + + if (propertyExists(item, "id") || propertyExists(item, "createdTime")) { Field[] attributes = item.getClass().getDeclaredFields(); for (Field attribute : attributes) { String name = attribute.getName(); if (name.equals("id") || name.equals("createdTime")) { - if(BeanUtils.getProperty(item,attribute.getName()) != null){ - throw new AirtableException("Property "+name+" should be null!"); - } - } else if (name.equals("photos")){ + if (BeanUtils.getProperty(item, attribute.getName()) != null) { + throw new AirtableException("Property " + name + " should be null!"); + } + } else if (name.equals("photos")) { List obj = (List) BeanUtilsBean.getInstance().getPropertyUtils().getProperty(item, "photos"); checkPropertiesOfAttachement(obj); - } + } } } - + } - - private void checkPropertiesOfAttachement(List attachements) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException{ - - if(attachements != null){ + + private void checkPropertiesOfAttachement(List attachements) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { + + if (attachements != null) { for (int i = 0; i < attachements.size(); i++) { - if(propertyExists(attachements.get(i),"id") || propertyExists(attachements.get(i),"size") || propertyExists(attachements.get(i), "type") || propertyExists(attachements.get(i), "filename")){ + if (propertyExists(attachements.get(i), "id") || propertyExists(attachements.get(i), "size") || propertyExists(attachements.get(i), "type") || propertyExists(attachements.get(i), "filename")) { Field[] attributesPhotos = attachements.getClass().getDeclaredFields(); for (Field attributePhoto : attributesPhotos) { String namePhotoAttribute = attributePhoto.getName(); - if (namePhotoAttribute.equals("id") || namePhotoAttribute.equals("size") || namePhotoAttribute.equals("Tpye") || namePhotoAttribute.equals("filename")) { - if(BeanUtils.getProperty(attachements.get(i),namePhotoAttribute) != null){ - throw new AirtableException("Property "+namePhotoAttribute+" should be null!"); - } + if (namePhotoAttribute.equals("id") || namePhotoAttribute.equals("size") || namePhotoAttribute.equals("Tpye") || namePhotoAttribute.equals("filename")) { + if (BeanUtils.getProperty(attachements.get(i), namePhotoAttribute) != null) { + throw new AirtableException("Property " + namePhotoAttribute + " should be null!"); + } } } } - } - } + } + } } - + /** - * + * * Get the String Id from the item. - * + * * @param item * @return * @throws AirtableException * @throws IllegalAccessException * @throws InvocationTargetException - * @throws NoSuchMethodException + * @throws NoSuchMethodException */ - private String getIdOfItem(T item) throws AirtableException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { - - if(propertyExists(item,"id")){ + + if (propertyExists(item, "id")) { String id = BeanUtils.getProperty(item, "id"); - if(id != null){ + if (id != null) { return id; - } + } } - throw new AirtableException("Id of "+item+" not Found!"); + throw new AirtableException("Id of " + item + " not Found!"); } /** - * - * Filter the Fields of the PostRecord Object. Id and created Time are set to null so Object Mapper doesent convert them to JSON. - * + * + * Filter the Fields of the PostRecord Object. Id and created Time are set + * to null so Object Mapper doesent convert them to JSON. + * * @param item * @return * @throws IllegalAccessException * @throws InvocationTargetException - * @throws NoSuchMethodException + * @throws NoSuchMethodException */ private T filterFields(T item) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException { - + Field[] attributes = item.getClass().getDeclaredFields(); - + for (Field attribute : attributes) { String name = attribute.getName(); - if ((name.equals("id") || name.equals("createdTime")) && (BeanUtils.getProperty(item,name) != null)) { - BeanUtilsBean.getInstance().getPropertyUtils().setProperty(item, name, null); + if ((name.equals("id") || name.equals("createdTime")) && (BeanUtils.getProperty(item, name) != null)) { + BeanUtilsBean.getInstance().getPropertyUtils().setProperty(item, name, null); } } - + return item; } From 51370621cd7dc704d828d373ceb0840273bdbe44 Mon Sep 17 00:00:00 2001 From: fzr Date: Thu, 14 Sep 2017 12:12:17 +0200 Subject: [PATCH 3/6] deleted old resources and recorded new data --- .../resources/__files/body-ActorCreate.json | 7 - .../resources/__files/body-ActorDelete.json | 4 - .../resources/__files/body-ActorFind.json | 28 -- .../resources/__files/body-ActorUpdate.json | 28 -- src/itest/resources/__files/body-Actors.json | 62 ---- .../resources/__files/body-MovieCreate.json | 18 - .../resources/__files/body-MovieCreate2.json | 43 --- src/itest/resources/__files/body-Movies.json | 350 ------------------ .../resources/__files/body-MoviesFind.json | 54 --- .../__files/body-MoviesMainView.json | 350 ------------------ .../__files/body-MoviesMaxRecords.json | 72 ---- .../__files/body-MoviesSortedNameAsc.json | 350 ------------------ .../__files/body-MoviesSortedNameDesc.json | 350 ------------------ .../__files/body-ParameterSelectFields.json | 39 -- .../__files/body-ParameterSelectFormula.json | 18 - .../body-ParameterSelectMaxRecords.json | 27 -- .../__files/body-ParameterSelectPageSize.json | 1 - .../__files/body-ParameterSelectSort.json | 1 - .../__files/body-ParameterSelectView.json | 1 - .../__files/body-SerializedName.json | 15 - .../mappings/mapping-ActorCreate.json | 11 - .../mappings/mapping-ActorDelete.json | 10 - .../mappings/mapping-ActorUpdate.json | 11 - .../mappings/mapping-ActorsFind.json | 10 - .../mappings/mapping-ActorsList.json | 10 - .../mapping-ActorsListSerializedNames.json | 10 - .../mappings/mapping-MovieCreate.json | 14 - .../mappings/mapping-MovieCreate2.json | 14 - .../resources/mappings/mapping-MovieFind.json | 10 - .../mappings/mapping-MoviesList.json | 10 - .../mappings/mapping-MoviesListMainView.json | 10 - .../mapping-MoviesListMaxRecords.json | 10 - .../mappings/mapping-MoviesListSortedAsc.json | 10 - .../mapping-MoviesListSortedDesc.json | 10 - .../mapping-ParameterSelectFields.json | 10 - .../mapping-ParameterSelectFormula.json | 10 - .../mapping-ParameterSelectMaxRecords.json | 10 - .../mapping-ParameterSelectPageSize.json | 10 - .../mappings/mapping-ParameterSelectSort.json | 10 - .../mappings/mapping-ParameterSelectView.json | 10 - ...-7339b89b-4783-4b03-9c07-8f538ce01fa4.json | 1 + ...-4bace684-7816-4a02-810d-cc1593ed8aad.json | 1 + ...-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json | 1 + ...-cc8a35db-9c22-4784-ac50-3608eb7f0479.json | 1 + ...-e36f3789-bee2-47d2-bc54-1d12addcac25.json | 1 + ...-0b6ca0e6-a47c-4958-9748-58312c742392.json | 1 + ...-11b60da8-5303-4dc6-a004-a4b5e6a52095.json | 1 + ...-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json | 1 + ...-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json | 1 + ...-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json | 1 + ...-48c8b998-a8d0-48e9-a98d-d74d24491e49.json | 1 + ...-4a5d270d-f108-4f93-81f5-329b2a074026.json | 1 + ...-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json | 1 + ...-68129618-f52a-46c7-890b-efdab40ee08f.json | 1 + ...-68160dad-c762-481f-86d4-1372db3bdf01.json | 1 + ...-6d9c7205-4268-4f63-a500-3150a039404c.json | 1 + ...-bb5553df-2eee-4dae-8916-1a292290f92b.json | 1 + ...-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json | 1 + ...-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json | 1 + ...-e06cff34-4056-4a90-8fd9-fee9fd660586.json | 1 + ...-f761fc98-71d2-41db-85ca-be96f15d408c.json | 1 + ...-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json | 1 + ...-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json | 1 + ...-aab5592a-0981-4b94-b9ce-da632df2bb73.json | 1 + ...-bbbe2e3f-4ee4-4930-807b-db29303e1800.json | 1 + ...-e28faa25-a908-4e68-8826-be8edecccd4e.json | 1 + ...-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json | 1 + .../resources/__files/body-ActorCreate.json | 7 - .../resources/__files/body-ActorDelete.json | 4 - .../resources/__files/body-ActorFind.json | 28 -- .../resources/__files/body-ActorUpdate.json | 28 -- src/test/resources/__files/body-Actors.json | 62 ---- .../resources/__files/body-MovieCreate.json | 18 - .../resources/__files/body-MovieCreate2.json | 43 --- src/test/resources/__files/body-Movies.json | 350 ------------------ .../resources/__files/body-MoviesFind.json | 54 --- .../__files/body-MoviesMainView.json | 350 ------------------ .../__files/body-MoviesMaxRecords.json | 72 ---- .../__files/body-MoviesSortedNameAsc.json | 350 ------------------ .../__files/body-MoviesSortedNameDesc.json | 350 ------------------ .../__files/body-ParameterSelectFields.json | 39 -- .../__files/body-ParameterSelectFormula.json | 18 - .../body-ParameterSelectMaxRecords.json | 27 -- .../__files/body-ParameterSelectPageSize.json | 1 - .../__files/body-ParameterSelectSort.json | 1 - .../__files/body-ParameterSelectView.json | 1 - .../__files/body-SerializedName.json | 15 - ...-cf88d9f4-0663-4a23-a485-1700111e0476.json | 1 + ...-7339b89b-4783-4b03-9c07-8f538ce01fa4.json | 39 ++ ...-4bace684-7816-4a02-810d-cc1593ed8aad.json | 30 ++ ...-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json | 30 ++ ...-cc8a35db-9c22-4784-ac50-3608eb7f0479.json | 39 ++ ...-e36f3789-bee2-47d2-bc54-1d12addcac25.json | 30 ++ ...-0b6ca0e6-a47c-4958-9748-58312c742392.json | 34 ++ ...-11b60da8-5303-4dc6-a004-a4b5e6a52095.json | 34 ++ ...-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json | 34 ++ ...-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json | 34 ++ ...-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json | 34 ++ ...-48c8b998-a8d0-48e9-a98d-d74d24491e49.json | 39 ++ ...-4a5d270d-f108-4f93-81f5-329b2a074026.json | 34 ++ ...-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json | 39 ++ ...-68129618-f52a-46c7-890b-efdab40ee08f.json | 34 ++ ...-68160dad-c762-481f-86d4-1372db3bdf01.json | 34 ++ ...-6d9c7205-4268-4f63-a500-3150a039404c.json | 34 ++ ...-bb5553df-2eee-4dae-8916-1a292290f92b.json | 39 ++ ...-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json | 34 ++ ...-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json | 34 ++ ...-e06cff34-4056-4a90-8fd9-fee9fd660586.json | 34 ++ ...-f761fc98-71d2-41db-85ca-be96f15d408c.json | 34 ++ ...-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json | 34 ++ ...-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json | 30 ++ ...-aab5592a-0981-4b94-b9ce-da632df2bb73.json | 30 ++ ...-bbbe2e3f-4ee4-4930-807b-db29303e1800.json | 30 ++ ...-e28faa25-a908-4e68-8826-be8edecccd4e.json | 30 ++ ...-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json | 34 ++ ...-cf88d9f4-0663-4a23-a485-1700111e0476.json | 30 ++ .../mappings/mapping-ActorCreate.json | 11 - .../mappings/mapping-ActorDelete.json | 10 - .../mappings/mapping-ActorUpdate.json | 11 - .../mappings/mapping-ActorsFind.json | 10 - .../mappings/mapping-ActorsList.json | 10 - .../mapping-ActorsListSerializedNames.json | 10 - .../mappings/mapping-MovieCreate.json | 14 - .../mappings/mapping-MovieCreate2.json | 14 - .../resources/mappings/mapping-MovieFind.json | 10 - .../mappings/mapping-MoviesList.json | 10 - .../mappings/mapping-MoviesListMainView.json | 10 - .../mapping-MoviesListMaxRecords.json | 10 - .../mappings/mapping-MoviesListSortedAsc.json | 10 - .../mapping-MoviesListSortedDesc.json | 10 - .../mapping-ParameterSelectFields.json | 10 - .../mapping-ParameterSelectFormula.json | 10 - .../mapping-ParameterSelectMaxRecords.json | 10 - .../mapping-ParameterSelectPageSize.json | 10 - .../mappings/mapping-ParameterSelectSort.json | 10 - .../mappings/mapping-ParameterSelectView.json | 10 - 136 files changed, 973 insertions(+), 4056 deletions(-) delete mode 100644 src/itest/resources/__files/body-ActorCreate.json delete mode 100644 src/itest/resources/__files/body-ActorDelete.json delete mode 100644 src/itest/resources/__files/body-ActorFind.json delete mode 100644 src/itest/resources/__files/body-ActorUpdate.json delete mode 100644 src/itest/resources/__files/body-Actors.json delete mode 100644 src/itest/resources/__files/body-MovieCreate.json delete mode 100644 src/itest/resources/__files/body-MovieCreate2.json delete mode 100644 src/itest/resources/__files/body-Movies.json delete mode 100644 src/itest/resources/__files/body-MoviesFind.json delete mode 100644 src/itest/resources/__files/body-MoviesMainView.json delete mode 100644 src/itest/resources/__files/body-MoviesMaxRecords.json delete mode 100644 src/itest/resources/__files/body-MoviesSortedNameAsc.json delete mode 100644 src/itest/resources/__files/body-MoviesSortedNameDesc.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectFields.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectFormula.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectMaxRecords.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectPageSize.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectSort.json delete mode 100644 src/itest/resources/__files/body-ParameterSelectView.json delete mode 100644 src/itest/resources/__files/body-SerializedName.json delete mode 100644 src/itest/resources/mappings/mapping-ActorCreate.json delete mode 100644 src/itest/resources/mappings/mapping-ActorDelete.json delete mode 100644 src/itest/resources/mappings/mapping-ActorUpdate.json delete mode 100644 src/itest/resources/mappings/mapping-ActorsFind.json delete mode 100644 src/itest/resources/mappings/mapping-ActorsList.json delete mode 100644 src/itest/resources/mappings/mapping-ActorsListSerializedNames.json delete mode 100644 src/itest/resources/mappings/mapping-MovieCreate.json delete mode 100644 src/itest/resources/mappings/mapping-MovieCreate2.json delete mode 100644 src/itest/resources/mappings/mapping-MovieFind.json delete mode 100644 src/itest/resources/mappings/mapping-MoviesList.json delete mode 100644 src/itest/resources/mappings/mapping-MoviesListMainView.json delete mode 100644 src/itest/resources/mappings/mapping-MoviesListMaxRecords.json delete mode 100644 src/itest/resources/mappings/mapping-MoviesListSortedAsc.json delete mode 100644 src/itest/resources/mappings/mapping-MoviesListSortedDesc.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectFields.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectFormula.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectMaxRecords.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectPageSize.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectSort.json delete mode 100644 src/itest/resources/mappings/mapping-ParameterSelectView.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json create mode 100644 src/test/resources/__files/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json delete mode 100644 src/test/resources/__files/body-ActorCreate.json delete mode 100644 src/test/resources/__files/body-ActorDelete.json delete mode 100644 src/test/resources/__files/body-ActorFind.json delete mode 100644 src/test/resources/__files/body-ActorUpdate.json delete mode 100644 src/test/resources/__files/body-Actors.json delete mode 100644 src/test/resources/__files/body-MovieCreate.json delete mode 100644 src/test/resources/__files/body-MovieCreate2.json delete mode 100644 src/test/resources/__files/body-Movies.json delete mode 100644 src/test/resources/__files/body-MoviesFind.json delete mode 100644 src/test/resources/__files/body-MoviesMainView.json delete mode 100644 src/test/resources/__files/body-MoviesMaxRecords.json delete mode 100644 src/test/resources/__files/body-MoviesSortedNameAsc.json delete mode 100644 src/test/resources/__files/body-MoviesSortedNameDesc.json delete mode 100644 src/test/resources/__files/body-ParameterSelectFields.json delete mode 100644 src/test/resources/__files/body-ParameterSelectFormula.json delete mode 100644 src/test/resources/__files/body-ParameterSelectMaxRecords.json delete mode 100644 src/test/resources/__files/body-ParameterSelectPageSize.json delete mode 100644 src/test/resources/__files/body-ParameterSelectSort.json delete mode 100644 src/test/resources/__files/body-ParameterSelectView.json delete mode 100644 src/test/resources/__files/body-SerializedName.json create mode 100644 src/test/resources/__files/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json create mode 100644 src/test/resources/mappings/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json create mode 100644 src/test/resources/mappings/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json delete mode 100644 src/test/resources/mappings/mapping-ActorCreate.json delete mode 100644 src/test/resources/mappings/mapping-ActorDelete.json delete mode 100644 src/test/resources/mappings/mapping-ActorUpdate.json delete mode 100644 src/test/resources/mappings/mapping-ActorsFind.json delete mode 100644 src/test/resources/mappings/mapping-ActorsList.json delete mode 100644 src/test/resources/mappings/mapping-ActorsListSerializedNames.json delete mode 100644 src/test/resources/mappings/mapping-MovieCreate.json delete mode 100644 src/test/resources/mappings/mapping-MovieCreate2.json delete mode 100644 src/test/resources/mappings/mapping-MovieFind.json delete mode 100644 src/test/resources/mappings/mapping-MoviesList.json delete mode 100644 src/test/resources/mappings/mapping-MoviesListMainView.json delete mode 100644 src/test/resources/mappings/mapping-MoviesListMaxRecords.json delete mode 100644 src/test/resources/mappings/mapping-MoviesListSortedAsc.json delete mode 100644 src/test/resources/mappings/mapping-MoviesListSortedDesc.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectFields.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectFormula.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectMaxRecords.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectPageSize.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectSort.json delete mode 100644 src/test/resources/mappings/mapping-ParameterSelectView.json diff --git a/src/itest/resources/__files/body-ActorCreate.json b/src/itest/resources/__files/body-ActorCreate.json deleted file mode 100644 index 2d99298..0000000 --- a/src/itest/resources/__files/body-ActorCreate.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "id": "rec123456789", - "fields": { - "Name": "Neuer Actor" - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ActorDelete.json b/src/itest/resources/__files/body-ActorDelete.json deleted file mode 100644 index 87c5f5a..0000000 --- a/src/itest/resources/__files/body-ActorDelete.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "deleted": true, - "id": "recapJ3Js8AEwt0Bf" -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ActorFind.json b/src/itest/resources/__files/body-ActorFind.json deleted file mode 100644 index 6c359ff..0000000 --- a/src/itest/resources/__files/body-ActorFind.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "id": "rec514228ed76ced1", - "fields": { - "Name": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ActorUpdate.json b/src/itest/resources/__files/body-ActorUpdate.json deleted file mode 100644 index f06a759..0000000 --- a/src/itest/resources/__files/body-ActorUpdate.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "id": "rec514228ed76ced1", - "fields": { - "Name": "Neuer Name", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-Actors.json b/src/itest/resources/__files/body-Actors.json deleted file mode 100644 index 180e780..0000000 --- a/src/itest/resources/__files/body-Actors.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "records": [ - { - "id": "rec514228ed76ced1", - "fields": { - "Name": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" - }, - { - "id":"recapJ3Js8AEwt0Bf", - "fields": { - "Name":"Test Actor", - "Photo": [ - { - "id":"attfbHPN3hRjTYk3U", - "url":"https://dl.airtable.com/eJd6UGPPTmGPvoTjpP57_Penguins.jpg", - "filename":"Penguins.jpg","size":777835,"type":"image/jpeg", - "thumbnails": { - "small": { - "url":"https://dl.airtable.com/mzOeWfo7RkiX8ueW14gi_small_Penguins.jpg", - "width":48, - "height":36 - }, - "large": { - "url":"https://dl.airtable.com/dMgnXtMrSDKSAQTQqYHa_large_Penguins.jpg", - "width":512, - "height":512 - } - } - } - ], - "Biography":"Test Bio", - "Filmography": [ - "rec6733da527dd0f1" - ] - }, - "createdTime":"2017-03-30T06:47:38.520Z" - } - ] -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-MovieCreate.json b/src/itest/resources/__files/body-MovieCreate.json deleted file mode 100644 index 4e6512f..0000000 --- a/src/itest/resources/__files/body-MovieCreate.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "rec987654321", - "fields": { - "Name": "Neuer Film", - "Description": "Irgendwas", - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - } \ No newline at end of file diff --git a/src/itest/resources/__files/body-MovieCreate2.json b/src/itest/resources/__files/body-MovieCreate2.json deleted file mode 100644 index 94d7542..0000000 --- a/src/itest/resources/__files/body-MovieCreate2.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.example.imgae.file1.de", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - }, - { - "id": "attzWvarnmYBBd2Wm", - "url": "https://www.example.imgae.file2.de", - "filename": "Lighthouse.jpg", - "size": 561276, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg", - "width": 48, - "height": 36 - }, - "large": { - "url": "https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg", - "width": 512, - "height": 512 - } - } - } - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-Movies.json b/src/itest/resources/__files/body-Movies.json deleted file mode 100644 index 6ac108a..0000000 --- a/src/itest/resources/__files/body-Movies.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - } - ] -} diff --git a/src/itest/resources/__files/body-MoviesFind.json b/src/itest/resources/__files/body-MoviesFind.json deleted file mode 100644 index 4c01308..0000000 --- a/src/itest/resources/__files/body-MoviesFind.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selli...", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - }, - { - "id": "attzWvarnmYBBd2Wm", - "url": "https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg", - "filename": "Lighthouse.jpg", - "size": 561276, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg", - "width": 48, - "height": 36 - }, - "large": { - "url": "https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg", - "width": 512, - "height": 512 - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - } \ No newline at end of file diff --git a/src/itest/resources/__files/body-MoviesMainView.json b/src/itest/resources/__files/body-MoviesMainView.json deleted file mode 100644 index 6097403..0000000 --- a/src/itest/resources/__files/body-MoviesMainView.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - } - ] -} diff --git a/src/itest/resources/__files/body-MoviesMaxRecords.json b/src/itest/resources/__files/body-MoviesMaxRecords.json deleted file mode 100644 index dc15715..0000000 --- a/src/itest/resources/__files/body-MoviesMaxRecords.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "records": [ - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - } - ] -} diff --git a/src/itest/resources/__files/body-MoviesSortedNameAsc.json b/src/itest/resources/__files/body-MoviesSortedNameAsc.json deleted file mode 100644 index af8071d..0000000 --- a/src/itest/resources/__files/body-MoviesSortedNameAsc.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - } - ] -} diff --git a/src/itest/resources/__files/body-MoviesSortedNameDesc.json b/src/itest/resources/__files/body-MoviesSortedNameDesc.json deleted file mode 100644 index c188e4d..0000000 --- a/src/itest/resources/__files/body-MoviesSortedNameDesc.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - } - ] -} diff --git a/src/itest/resources/__files/body-ParameterSelectFields.json b/src/itest/resources/__files/body-ParameterSelectFields.json deleted file mode 100644 index a3f88e6..0000000 --- a/src/itest/resources/__files/body-ParameterSelectFields.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "records":[ - { - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec2ed6bdd802c584", - "fields":{ - "Name":"Forrest Gump" - }, - "createdTime":"2014-07-18T04:56:05.000Z" - }, - { - "id":"rec3ce936056bbf7b", - "fields":{ - "Name":"You've got Mail" - }, - "createdTime":"2014-07-18T04:52:02.000Z" - }, - { - "id":"rec6733da527dd0f1", - "fields":{ - "Name":"The Godfather" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec6c1b6022782cd8", - "fields":{ - "Name":"Billy Madison" - }, - "createdTime":"2014-07-18T04:54:18.000Z" - } - ] -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ParameterSelectFormula.json b/src/itest/resources/__files/body-ParameterSelectFormula.json deleted file mode 100644 index d352570..0000000 --- a/src/itest/resources/__files/body-ParameterSelectFormula.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "records":[ - { - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec2ed6bdd802c584", - "fields":{ - "Name":"Forrest Gump" - }, - "createdTime":"2014-07-18T04:56:05.000Z" - } - ] -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ParameterSelectMaxRecords.json b/src/itest/resources/__files/body-ParameterSelectMaxRecords.json deleted file mode 100644 index 18675f9..0000000 --- a/src/itest/resources/__files/body-ParameterSelectMaxRecords.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "records":[{ - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act", - "Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos":[{ - "id":"att9141430d2b6dc1", - "url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename":"Sister_Act_film_poster.jpg", - "size":19805, - "type":"image/jpeg", - "thumbnails":{ - "small":{ - "url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large":{ - "url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - }} - }], - "Actors":["rec73fcac60a91bc1"], - "Director":["rec114faab248e582"], - "Genre":["Comedy"] - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }] -} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ParameterSelectPageSize.json b/src/itest/resources/__files/body-ParameterSelectPageSize.json deleted file mode 100644 index 2ef12a3..0000000 --- a/src/itest/resources/__files/body-ParameterSelectPageSize.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"rec110972df115479","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9141430d2b6dc1","url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r","filename":"Sister_Act_film_poster.jpg","size":19805,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy"},"large":{"url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg"}}}],"Actors":["rec73fcac60a91bc1"],"Director":["rec114faab248e582"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"rec3ce936056bbf7b","fields":{"Name":"You've got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Mikl├│s L├íszl├│. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly ÔÇö a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"atte28f9aa6e2118a","url":"https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS","filename":"220px-You've_Got_Mail.jpg","size":24847,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz"},"large":{"url":"https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB"}}}],"Actors":["recf38022b2f0db0d","rece0feb637db7618"],"Director":["rec738f48b44cc24c"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6c1b6022782cd8","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"att2a05739d6534e4","url":"https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1","filename":"220px-Billy_madison_poster.jpg","size":24774,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka"},"large":{"url":"https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo"}}}],"Actors":["rece266d5762b5240"],"Director":["rec4270d52105811e"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recedd526ce84cbd2","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"att995467ff4b5f04","url":"https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w","filename":"220px-Caddyshack_poster.jpg","size":30647,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY"},"large":{"url":"https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD"}}}],"Actors":["rec9b8f53c739a551"],"Director":["rec05389cff1679e5"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recee114d18a0a3c8","fields":{"Name":"Get Smart","Description":"Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"ÔÇöJames Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]","Photos":[{"id":"attaef7e86f0bd75e","url":"https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI","filename":"250px-Get_Smart.gif","size":30619,"type":"image/gif","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z"},"large":{"url":"https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89"}}}],"Actors":["rec77b0b4ba0b730e","rec43ef994a3465e5"],"Director":["rec2bb32ef25348fa"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:50:49.000Z"},{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ParameterSelectSort.json b/src/itest/resources/__files/body-ParameterSelectSort.json deleted file mode 100644 index d538c5c..0000000 --- a/src/itest/resources/__files/body-ParameterSelectSort.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"rec3ce936056bbf7b","fields":{"Name":"You've got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Mikl├│s L├íszl├│. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly ÔÇö a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"atte28f9aa6e2118a","url":"https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS","filename":"220px-You've_Got_Mail.jpg","size":24847,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz"},"large":{"url":"https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB"}}}],"Actors":["recf38022b2f0db0d","rece0feb637db7618"],"Director":["rec738f48b44cc24c"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec110972df115479","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9141430d2b6dc1","url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r","filename":"Sister_Act_film_poster.jpg","size":19805,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy"},"large":{"url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg"}}}],"Actors":["rec73fcac60a91bc1"],"Director":["rec114faab248e582"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recee114d18a0a3c8","fields":{"Name":"Get Smart","Description":"Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"ÔÇöJames Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]","Photos":[{"id":"attaef7e86f0bd75e","url":"https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI","filename":"250px-Get_Smart.gif","size":30619,"type":"image/gif","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z"},"large":{"url":"https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89"}}}],"Actors":["rec77b0b4ba0b730e","rec43ef994a3465e5"],"Director":["rec2bb32ef25348fa"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:50:49.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"recedd526ce84cbd2","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"att995467ff4b5f04","url":"https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w","filename":"220px-Caddyshack_poster.jpg","size":30647,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY"},"large":{"url":"https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD"}}}],"Actors":["rec9b8f53c739a551"],"Director":["rec05389cff1679e5"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"rec6c1b6022782cd8","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"att2a05739d6534e4","url":"https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1","filename":"220px-Billy_madison_poster.jpg","size":24774,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka"},"large":{"url":"https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo"}}}],"Actors":["rece266d5762b5240"],"Director":["rec4270d52105811e"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"}]} \ No newline at end of file diff --git a/src/itest/resources/__files/body-ParameterSelectView.json b/src/itest/resources/__files/body-ParameterSelectView.json deleted file mode 100644 index 092bf36..0000000 --- a/src/itest/resources/__files/body-ParameterSelectView.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"}]} \ No newline at end of file diff --git a/src/itest/resources/__files/body-SerializedName.json b/src/itest/resources/__files/body-SerializedName.json deleted file mode 100644 index be48906..0000000 --- a/src/itest/resources/__files/body-SerializedName.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "records": [ - { - "id": "rec514228ed76ced1", - "fields": { - "First- & Lastname": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Biography of Actor": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" - } - ] -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorCreate.json b/src/itest/resources/mappings/mapping-ActorCreate.json deleted file mode 100644 index 0c3924c..0000000 --- a/src/itest/resources/mappings/mapping-ActorCreate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\": \"Neuer Actor\"}}"}] - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorCreate.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorDelete.json b/src/itest/resources/mappings/mapping-ActorDelete.json deleted file mode 100644 index 0ce8f0e..0000000 --- a/src/itest/resources/mappings/mapping-ActorDelete.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/recapJ3Js8AEwt0Bf", - "method" : "DELETE" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorDelete.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorUpdate.json b/src/itest/resources/mappings/mapping-ActorUpdate.json deleted file mode 100644 index 29fb493..0000000 --- a/src/itest/resources/mappings/mapping-ActorUpdate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/rec514228ed76ced1", - "method" : "PATCH", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\": \"Neuer Name\"}}"}] - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorUpdate.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorsFind.json b/src/itest/resources/mappings/mapping-ActorsFind.json deleted file mode 100644 index dc1fafa..0000000 --- a/src/itest/resources/mappings/mapping-ActorsFind.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/rec514228ed76ced1", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorFind.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorsList.json b/src/itest/resources/mappings/mapping-ActorsList.json deleted file mode 100644 index 9b8460e..0000000 --- a/src/itest/resources/mappings/mapping-ActorsList.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-Actors.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ActorsListSerializedNames.json b/src/itest/resources/mappings/mapping-ActorsListSerializedNames.json deleted file mode 100644 index 4355bc9..0000000 --- a/src/itest/resources/mappings/mapping-ActorsListSerializedNames.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/SerializedNames", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-SerializedName.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MovieCreate.json b/src/itest/resources/mappings/mapping-MovieCreate.json deleted file mode 100644 index cb3d7c9..0000000 --- a/src/itest/resources/mappings/mapping-MovieCreate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Description\":\"Irgendwas\",\"Director\":[\"recfaf64fe0db19a9\"],\"Actors\":[\"recc8841a14245b0b\",\"rec514228ed76ced1\"],\"Genre\":[\"Drama\"]}}", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - }] -}, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MovieCreate.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MovieCreate2.json b/src/itest/resources/mappings/mapping-MovieCreate2.json deleted file mode 100644 index 0e0edd0..0000000 --- a/src/itest/resources/mappings/mapping-MovieCreate2.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Photos\": [{\"url\":\"https://www.example.imgae.file1.de\"},{\"url\":\"https://www.example.imgae.file2.de\"}]}}", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - }] -}, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MovieCreate2.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MovieFind.json b/src/itest/resources/mappings/mapping-MovieFind.json deleted file mode 100644 index 326b51b..0000000 --- a/src/itest/resources/mappings/mapping-MovieFind.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies/rec6733da527dd0f1", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesFind.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MoviesList.json b/src/itest/resources/mappings/mapping-MoviesList.json deleted file mode 100644 index 50d53e5..0000000 --- a/src/itest/resources/mappings/mapping-MoviesList.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-Movies.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MoviesListMainView.json b/src/itest/resources/mappings/mapping-MoviesListMainView.json deleted file mode 100644 index 55e50eb..0000000 --- a/src/itest/resources/mappings/mapping-MoviesListMainView.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?view=Main+View", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesMainView.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MoviesListMaxRecords.json b/src/itest/resources/mappings/mapping-MoviesListMaxRecords.json deleted file mode 100644 index 7218edd..0000000 --- a/src/itest/resources/mappings/mapping-MoviesListMaxRecords.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?maxRecords=2", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesMaxRecords.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MoviesListSortedAsc.json b/src/itest/resources/mappings/mapping-MoviesListSortedAsc.json deleted file mode 100644 index 892a8f1..0000000 --- a/src/itest/resources/mappings/mapping-MoviesListSortedAsc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request": { - "url": "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=asc", - "method": "GET" - }, - "response": { - "status": 200, - "bodyFileName": "/body-MoviesSortedNameAsc.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-MoviesListSortedDesc.json b/src/itest/resources/mappings/mapping-MoviesListSortedDesc.json deleted file mode 100644 index fa8bbcb..0000000 --- a/src/itest/resources/mappings/mapping-MoviesListSortedDesc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request": { - "url": "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", - "method": "GET" - }, - "response": { - "status": 200, - "bodyFileName": "/body-MoviesSortedNameDesc.json" - } -} diff --git a/src/itest/resources/mappings/mapping-ParameterSelectFields.json b/src/itest/resources/mappings/mapping-ParameterSelectFields.json deleted file mode 100644 index df8c99e..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectFields.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?fields%5B%5D=Name", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectFields.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ParameterSelectFormula.json b/src/itest/resources/mappings/mapping-ParameterSelectFormula.json deleted file mode 100644 index 0bfa97d..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectFormula.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?filterByFormula=NOT%28%7BName%7D+%3D+%27%27%29", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectFormula.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ParameterSelectMaxRecords.json b/src/itest/resources/mappings/mapping-ParameterSelectMaxRecords.json deleted file mode 100644 index 9b72d97..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectMaxRecords.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?pageSize=10", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectPageSize.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ParameterSelectPageSize.json b/src/itest/resources/mappings/mapping-ParameterSelectPageSize.json deleted file mode 100644 index 7378b93..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectPageSize.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?paheSize=10", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectPageSize.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ParameterSelectSort.json b/src/itest/resources/mappings/mapping-ParameterSelectSort.json deleted file mode 100644 index b54a2db..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectSort.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectSort.json" - } -} \ No newline at end of file diff --git a/src/itest/resources/mappings/mapping-ParameterSelectView.json b/src/itest/resources/mappings/mapping-ParameterSelectView.json deleted file mode 100644 index 969144e..0000000 --- a/src/itest/resources/mappings/mapping-ParameterSelectView.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?view=Dramas", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectView.json" - } -} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json b/src/test/resources/__files/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json new file mode 100644 index 0000000..54883ce --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json @@ -0,0 +1 @@ +{"id":"reclXfebI3U6tDVdT","fields":{"Name":"Neuer Actor"},"createdTime":"2017-09-14T10:09:24.545Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json b/src/test/resources/__files/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json new file mode 100644 index 0000000..555739d --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json @@ -0,0 +1 @@ +{"error":"NOT_FOUND"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json b/src/test/resources/__files/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json new file mode 100644 index 0000000..555739d --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json @@ -0,0 +1 @@ +{"error":"NOT_FOUND"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json b/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json new file mode 100644 index 0000000..a1db5b3 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json @@ -0,0 +1 @@ +{"id":"recEtUIW6FWtbEDKz","fields":{"Name":"Neuer Name","Filmography":["recFj9J78MLtiFFMz","recyDVST4w4h2zrKq"],"Photo":[{"id":"att1b7c05d697c0c1","url":"https://dl.airtable.com/MaY98g4SQ1WkEbN2nKXL_220px-Marlon_Brando_-_The_Wild_One.jpg","filename":"220px-Marlon_Brando_-_The_Wild_One.jpg","size":13845,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/DgpoQfQ22XxQWv5zXAZN_small_220px-Marlon_Brando_-_The_Wild_One.jpg","width":29,"height":36},"large":{"url":"https://dl.airtable.com/6niNAzLrROmeBducZ03c_large_220px-Marlon_Brando_-_The_Wild_One.jpg","width":256,"height":321}}}],"Biography":"Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely considered to be one of the greatest and most influential actors of all time. A cultural icon, Brando is most famous for his Oscar-winning performances as Terry Malloy in On the Waterfront (1954) and Vito Corleone in The Godfather (1972), as well as influential performances in A Streetcar Named Desire (1951), Viva Zapata! (1952), Julius Caesar (1953), The Wild One (1953), Reflections in a Golden Eye (1967), Last Tango in Paris (1972) and Apocalypse Now (1979). Brando was also an activist, supporting many causes, notably the African-American Civil Rights Movement and various American Indian Movements."},"createdTime":"2014-07-18T04:48:25.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json b/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json new file mode 100644 index 0000000..fef7c83 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json @@ -0,0 +1 @@ +{"id":"recEtUIW6FWtbEDKz","fields":{"Name":"Marlon Brando","Filmography":["recFj9J78MLtiFFMz"],"Photo":[{"id":"att1b7c05d697c0c1","url":"https://dl.airtable.com/MaY98g4SQ1WkEbN2nKXL_220px-Marlon_Brando_-_The_Wild_One.jpg","filename":"220px-Marlon_Brando_-_The_Wild_One.jpg","size":13845,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/DgpoQfQ22XxQWv5zXAZN_small_220px-Marlon_Brando_-_The_Wild_One.jpg","width":29,"height":36},"large":{"url":"https://dl.airtable.com/6niNAzLrROmeBducZ03c_large_220px-Marlon_Brando_-_The_Wild_One.jpg","width":256,"height":321}}}],"Biography":"Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely considered to be one of the greatest and most influential actors of all time. A cultural icon, Brando is most famous for his Oscar-winning performances as Terry Malloy in On the Waterfront (1954) and Vito Corleone in The Godfather (1972), as well as influential performances in A Streetcar Named Desire (1951), Viva Zapata! (1952), Julius Caesar (1953), The Wild One (1953), Reflections in a Golden Eye (1967), Last Tango in Paris (1972) and Apocalypse Now (1979). Brando was also an activist, supporting many causes, notably the African-American Civil Rights Movement and various American Indian Movements."},"createdTime":"2014-07-18T04:48:25.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json new file mode 100644 index 0000000..1e79db1 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json @@ -0,0 +1 @@ +{"records":[{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json new file mode 100644 index 0000000..f52d45d --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json new file mode 100644 index 0000000..95f99c9 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json new file mode 100644 index 0000000..5d92714 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"}],"offset":"itrXLN3EPT3UMhyqp/recCo4zX4HOsgDEEJ"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json new file mode 100644 index 0000000..f6dc714 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json @@ -0,0 +1 @@ +{"records":[{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json new file mode 100644 index 0000000..5b44dd5 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json @@ -0,0 +1 @@ +{"error":{"type":"INVALID_ATTACHMENT_OBJECT","message":"Invalid attachment object for field Photos: {\n \"id\": \"1\",\n \"url\": \"https://www.example.imgae.file1.de\"\n}"}} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json new file mode 100644 index 0000000..ff5d1a9 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json @@ -0,0 +1 @@ +{"records":[{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"}],"offset":"itrXLN3EPT3UMhyqp/recFrUv93z0u5FuJF"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json new file mode 100644 index 0000000..a7ce3e0 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json @@ -0,0 +1 @@ +{"id":"recyDVST4w4h2zrKq","fields":{"Name":"Neuer Film","Description":"Irgendwas","Director":["recPxOZblV8yJU4mY"],"Actors":["recEtUIW6FWtbEDKz","recInYFZ1DQpeCuSz"],"Genre":["Drama"]},"createdTime":"2017-09-14T10:09:25.371Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json new file mode 100644 index 0000000..2311f50 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json @@ -0,0 +1 @@ +{"records":[{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json new file mode 100644 index 0000000..c865efd --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json @@ -0,0 +1 @@ +{"records":[{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json new file mode 100644 index 0000000..625f29b --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json @@ -0,0 +1 @@ +{"records":[{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json new file mode 100644 index 0000000..3f76931 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json @@ -0,0 +1 @@ +{"id":"recEvnyMQjo0FqcMJ","fields":{"Name":"Neuer Film","Photos":[{"id":"attyxd5gQDeseWZal","url":"https://www.example.imgae.file1.de","filename":"Unnamed attachment"},{"id":"attiNdSZp0smpgIl6","url":"https://www.example.imgae.file2.de","filename":"Unnamed attachment"}]},"createdTime":"2017-09-14T10:09:26.368Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json new file mode 100644 index 0000000..28d616c --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail"},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison"},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack"},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club"},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json new file mode 100644 index 0000000..f52d45d --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json new file mode 100644 index 0000000..f52d45d --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json new file mode 100644 index 0000000..95f99c9 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json @@ -0,0 +1 @@ +{"records":[{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json new file mode 100644 index 0000000..1e79db1 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json @@ -0,0 +1 @@ +{"records":[{"id":"recCo4zX4HOsgDEEJ","fields":{"Name":"You've Got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937 play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"attJB6oqbGP1R29Mh","url":"https://dl.airtable.com/i7JySJuDSpq7V7po3iH7_You've_Got_Mail.jpg","filename":"You've_Got_Mail.jpg","size":30719,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/qV5Hxms7Qti9caXU0XXo_small_You've_Got_Mail.jpg","width":25,"height":36},"large":{"url":"https://dl.airtable.com/5VRuAWpeRpWqIy10nb26_large_You've_Got_Mail.jpg","width":270,"height":396}}}],"Actors":["recyvYGW0CLB5FANL","recNs5E54KQzgPvOG"],"Director":["recBCuNMX4gs7USwu"],"Genre":["Romantic Comedy"],"Personal Notes":"I can't imagine this movie has aged well..."},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recAt6z10EYD6NtEH","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9cLoTiK3ewJMMF","url":"https://dl.airtable.com/60nNr67FTTSv1Gg8w7Zh_Sister_Act_film_poster.jpg","filename":"Sister_Act_film_poster.jpg","size":32876,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/NlKdzNtoSe2lkEMkeGlX_small_Sister_Act_film_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/CntpjeDdSNKrpImiYXoa_large_Sister_Act_film_poster.jpg","width":300,"height":447}}}],"Actors":["recGv5C4axZweJAJz"],"Director":["rech9CpZXBAwGwh0D"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recFrUv93z0u5FuJF","fields":{"Name":"Seven Samurai","Description":"Seven Samurai is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attcgV9vNiMm5NtTa","url":"https://dl.airtable.com/4NkoXvgOQyuSfG7MlHOw_Seven_Samurai_movie_poster.jpg","filename":"Seven_Samurai_movie_poster.jpg","size":140035,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/ZpxHvaqQIWH9vxtJnrKg_small_Seven_Samurai_movie_poster.jpg","width":26,"height":36},"large":{"url":"https://dl.airtable.com/P8zuMn05RXGK8d93I5lp_large_Seven_Samurai_movie_poster.jpg","width":267,"height":372}}}],"Seen?":true,"Actors":["recBxWAZ1yNqiCvNH"],"Director":["rec4GpJrQjinzo0GJ"],"Genre":["Adventure","Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recKq6BXazZwcHqGG","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary. The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att8u77Lz6LKQK9dM","url":"https://dl.airtable.com/ayZsJk2R6S5EUbZgMVg6_Pulp_Fiction_(1994)_poster.jpg","filename":"Pulp_Fiction_(1994)_poster.jpg","size":155345,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/zRSKQY2RVpax5RiNyAQF_small_Pulp_Fiction_(1994)_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/MBnx1RHXRxCykxRCfXPP_large_Pulp_Fiction_(1994)_poster.jpg","width":250,"height":371}}}],"Seen?":true,"Actors":["recKxZF60AXAaFvRE","recFq8zV0BVC9IyNK","recJm3x95DLBhIrSy"],"Director":["rec8yqCNaDv5e6gm5"],"Genre":["Drama"],"Personal Rating":"3: Average 😌"},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recBq3w5bERC7EuFC","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"attQUA1J4KCTcvd6P","url":"https://dl.airtable.com/5LzT8A6TxS0zkIK9dOTQ_Forrest_Gump_poster.jpg","filename":"Forrest_Gump_poster.jpg","size":90063,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/6RYIGCuVSuuYi0y9vy7X_small_Forrest_Gump_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/uxiryv05TbWiofYaHJaX_large_Forrest_Gump_poster.jpg","width":300,"height":400}}}],"Seen?":true,"Actors":["recyvYGW0CLB5FANL"],"Director":["recjlTrYyuQCULUOH"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recynXxaZLWrcEwSJ","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"attJx1VYPx0ZLbcUY","url":"https://dl.airtable.com/pMfhDQvmRJSMobhZB6gZ_Fight_Club_poster.jpg","filename":"Fight_Club_poster.jpg","size":19224,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/mnbOBf1HT2KkjJ86RcIc_small_Fight_Club_poster.jpg","width":27,"height":36},"large":{"url":"https://dl.airtable.com/zSeUmRtVRrGBkZBqSnTh_large_Fight_Club_poster.jpg","width":275,"height":362}}}],"Actors":["recCq8x68LZAeEAEM"],"Director":["recbRd28mwMPYWRNG"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"recNp3vW4DXu9EAKA","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"attqYWzirTDpcRyuE","url":"https://dl.airtable.com/fxC9r84XRheCuJ61HcKA_Caddyshack_poster.jpg","filename":"Caddyshack_poster.jpg","size":44602,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/4nNdlVBOSdO2ajzwPGT0_small_Caddyshack_poster.jpg","width":23,"height":36},"large":{"url":"https://dl.airtable.com/4FIwpDQ2QhWjTbacxDiY_large_Caddyshack_poster.jpg","width":300,"height":473}}}],"Actors":["recInYFZ1DQpeCuSz"],"Director":["recJZi67ZiVMJsSqC"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recFo7B0YJLtdKBKG","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1. The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"atttnUjsb9XGPadm4","url":"https://dl.airtable.com/K4lv47aaSRKEIfIqFuqg_Billy_madison_poster.jpg","filename":"Billy_madison_poster.jpg","size":35384,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/xEePdPjyTu2855UYBjvh_small_Billy_madison_poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/BJAf9s32TWSE9hHPd9TR_large_Billy_madison_poster.jpg","width":295,"height":438}}}],"Actors":["recNuWw73yPogNrRy"],"Director":["recWf1u3lUd8CgH8a"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json new file mode 100644 index 0000000..f2e1e50 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json @@ -0,0 +1 @@ +{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json new file mode 100644 index 0000000..f2e1e50 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json @@ -0,0 +1 @@ +{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json new file mode 100644 index 0000000..f2e1e50 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json @@ -0,0 +1 @@ +{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json new file mode 100644 index 0000000..f2e1e50 --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json @@ -0,0 +1 @@ +{"id":"recFj9J78MLtiFFMz","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"attk3WY5B28GVcFGU","url":"https://dl.airtable.com/9UhUUeAtSym1PzBdA0q0_AlPacinoandMarlonBrando.jpg","filename":"AlPacinoandMarlonBrando.jpg","size":35698,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/8QPDr5OXTl239uV517gi_small_AlPacinoandMarlonBrando.jpg","width":30,"height":36},"large":{"url":"https://dl.airtable.com/EqoRRvQiTUSiEhLuHllY_large_AlPacinoandMarlonBrando.jpg","width":381,"height":450}}},{"id":"attq5oMn4IUMfzdxR","url":"https://dl.airtable.com/FuvrLhDxRCKxRRXdknwQ_The%20Godfather%20poster.jpg","filename":"The Godfather poster.jpg","size":265578,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/rlQ8MyQ4RuqN7rT03ALq_small_The%20Godfather%20poster.jpg","width":24,"height":36},"large":{"url":"https://dl.airtable.com/hMpOQGV1RmqF8oyP1K72_large_The%20Godfather%20poster.jpg","width":512,"height":512}}}],"Seen?":true,"Actors":["recLkYuV8INo9NANJ","recEtUIW6FWtbEDKz"],"Director":["recPxOZblV8yJU4mY"],"Genre":["Drama"],"Personal Rating":"4: Entertaining 😃"},"createdTime":"2014-07-18T04:42:06.000Z"} \ No newline at end of file diff --git a/src/test/resources/__files/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json b/src/test/resources/__files/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json new file mode 100644 index 0000000..2af244b --- /dev/null +++ b/src/test/resources/__files/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json @@ -0,0 +1 @@ +{"error":{"type":"TABLE_NOT_FOUND","message":"Could not find table NotExists in application appTtHA5PfJnVfjdu"}} \ No newline at end of file diff --git a/src/test/resources/__files/body-ActorCreate.json b/src/test/resources/__files/body-ActorCreate.json deleted file mode 100644 index 2d99298..0000000 --- a/src/test/resources/__files/body-ActorCreate.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "id": "rec123456789", - "fields": { - "Name": "Neuer Actor" - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ActorDelete.json b/src/test/resources/__files/body-ActorDelete.json deleted file mode 100644 index 87c5f5a..0000000 --- a/src/test/resources/__files/body-ActorDelete.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "deleted": true, - "id": "recapJ3Js8AEwt0Bf" -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ActorFind.json b/src/test/resources/__files/body-ActorFind.json deleted file mode 100644 index 6c359ff..0000000 --- a/src/test/resources/__files/body-ActorFind.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "id": "rec514228ed76ced1", - "fields": { - "Name": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ActorUpdate.json b/src/test/resources/__files/body-ActorUpdate.json deleted file mode 100644 index f06a759..0000000 --- a/src/test/resources/__files/body-ActorUpdate.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "id": "rec514228ed76ced1", - "fields": { - "Name": "Neuer Name", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" -} \ No newline at end of file diff --git a/src/test/resources/__files/body-Actors.json b/src/test/resources/__files/body-Actors.json deleted file mode 100644 index 180e780..0000000 --- a/src/test/resources/__files/body-Actors.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "records": [ - { - "id": "rec514228ed76ced1", - "fields": { - "Name": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Photo": [ - { - "id": "att1b7c05d697c0c1", - "url": "https://www.filepicker.io/api/file/xlhctgHEQiSGNc0ieMec", - "filename": "220px-Marlon_Brando_-_The_Wild_One.jpg", - "size": 13845, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/Rh3L1DL7QAe8nleanQVV" - }, - "large": { - "url": "https://www.filepicker.io/api/file/hcrLCStVRX6LNVEHqtXA" - } - } - } - ], - "Biography": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" - }, - { - "id":"recapJ3Js8AEwt0Bf", - "fields": { - "Name":"Test Actor", - "Photo": [ - { - "id":"attfbHPN3hRjTYk3U", - "url":"https://dl.airtable.com/eJd6UGPPTmGPvoTjpP57_Penguins.jpg", - "filename":"Penguins.jpg","size":777835,"type":"image/jpeg", - "thumbnails": { - "small": { - "url":"https://dl.airtable.com/mzOeWfo7RkiX8ueW14gi_small_Penguins.jpg", - "width":48, - "height":36 - }, - "large": { - "url":"https://dl.airtable.com/dMgnXtMrSDKSAQTQqYHa_large_Penguins.jpg", - "width":512, - "height":512 - } - } - } - ], - "Biography":"Test Bio", - "Filmography": [ - "rec6733da527dd0f1" - ] - }, - "createdTime":"2017-03-30T06:47:38.520Z" - } - ] -} \ No newline at end of file diff --git a/src/test/resources/__files/body-MovieCreate.json b/src/test/resources/__files/body-MovieCreate.json deleted file mode 100644 index 4e6512f..0000000 --- a/src/test/resources/__files/body-MovieCreate.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "rec987654321", - "fields": { - "Name": "Neuer Film", - "Description": "Irgendwas", - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - } \ No newline at end of file diff --git a/src/test/resources/__files/body-MovieCreate2.json b/src/test/resources/__files/body-MovieCreate2.json deleted file mode 100644 index 94d7542..0000000 --- a/src/test/resources/__files/body-MovieCreate2.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.example.imgae.file1.de", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - }, - { - "id": "attzWvarnmYBBd2Wm", - "url": "https://www.example.imgae.file2.de", - "filename": "Lighthouse.jpg", - "size": 561276, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg", - "width": 48, - "height": 36 - }, - "large": { - "url": "https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg", - "width": 512, - "height": 512 - } - } - } - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" -} \ No newline at end of file diff --git a/src/test/resources/__files/body-Movies.json b/src/test/resources/__files/body-Movies.json deleted file mode 100644 index 6ac108a..0000000 --- a/src/test/resources/__files/body-Movies.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - } - ] -} diff --git a/src/test/resources/__files/body-MoviesFind.json b/src/test/resources/__files/body-MoviesFind.json deleted file mode 100644 index 4c01308..0000000 --- a/src/test/resources/__files/body-MoviesFind.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selli...", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - }, - { - "id": "attzWvarnmYBBd2Wm", - "url": "https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg", - "filename": "Lighthouse.jpg", - "size": 561276, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg", - "width": 48, - "height": 36 - }, - "large": { - "url": "https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg", - "width": 512, - "height": 512 - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - } \ No newline at end of file diff --git a/src/test/resources/__files/body-MoviesMainView.json b/src/test/resources/__files/body-MoviesMainView.json deleted file mode 100644 index 6097403..0000000 --- a/src/test/resources/__files/body-MoviesMainView.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - } - ] -} diff --git a/src/test/resources/__files/body-MoviesMaxRecords.json b/src/test/resources/__files/body-MoviesMaxRecords.json deleted file mode 100644 index dc15715..0000000 --- a/src/test/resources/__files/body-MoviesMaxRecords.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "records": [ - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - } - ] -} diff --git a/src/test/resources/__files/body-MoviesSortedNameAsc.json b/src/test/resources/__files/body-MoviesSortedNameAsc.json deleted file mode 100644 index af8071d..0000000 --- a/src/test/resources/__files/body-MoviesSortedNameAsc.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - } - ] -} diff --git a/src/test/resources/__files/body-MoviesSortedNameDesc.json b/src/test/resources/__files/body-MoviesSortedNameDesc.json deleted file mode 100644 index c188e4d..0000000 --- a/src/test/resources/__files/body-MoviesSortedNameDesc.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "records": [ - { - "id": "rec3ce936056bbf7b", - "fields": { - "Name": "You've got Mail", - "Description": "You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Miklós László. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly — a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.", - "Photos": [ - { - "id": "atte28f9aa6e2118a", - "url": "https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS", - "filename": "220px-You've_Got_Mail.jpg", - "size": 24847, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz" - }, - "large": { - "url": "https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d", - "rece0feb637db7618" - ], - "Director": [ - "rec738f48b44cc24c" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:52:02.000Z" - }, - { - "id": "rec6733da527dd0f1", - "fields": { - "Name": "The Godfather", - "Description": "The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.", - "Photos": [ - { - "id": "att6dba4af5786df1", - "url": "https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k", - "filename": "220px-TheGodfatherAlPacinoMarlonBrando.jpg", - "size": 16420, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4" - } - } - } - ], - "Actors": [ - "recc8841a14245b0b", - "rec514228ed76ced1" - ], - "Director": [ - "recfaf64fe0db19a9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec110972df115479", - "fields": { - "Name": "Sister Act", - "Description": "Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos": [ - { - "id": "att9141430d2b6dc1", - "url": "https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename": "Sister_Act_film_poster.jpg", - "size": 19805, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - } - } - } - ], - "Actors": [ - "rec73fcac60a91bc1" - ], - "Director": [ - "rec114faab248e582" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "rec6f45f58180d5c7", - "fields": { - "Name": "Seven Samurai", - "Description": "Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.", - "Photos": [ - { - "id": "attfb51ccc438566b", - "url": "https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ", - "filename": "Seven_Samurai_movie_poster.jpg", - "size": 37313, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI" - }, - "large": { - "url": "https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW" - } - } - } - ], - "Actors": [ - "rec256a53744da609" - ], - "Director": [ - "rec051acc552ecc58" - ], - "Genre": [ - "Adventure", - "Drama" - ] - }, - "createdTime": "2014-07-18T04:57:03.000Z" - }, - { - "id": "recbe0b3c80a7f198", - "fields": { - "Name": "Pulp Fiction", - "Description": "Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.", - "Photos": [ - { - "id": "att2ffd5c8228a3b4", - "url": "https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo", - "filename": "215px-Pulp_Fiction_cover.jpg", - "size": 25639, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd" - } - } - } - ], - "Actors": [ - "recb59fc29ee5d646", - "rec6e2912ac04090c", - "recaad7f7c2fc0250" - ], - "Director": [ - "rec6caf9605f137c9" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:42:06.000Z" - }, - { - "id": "recee114d18a0a3c8", - "fields": { - "Name": "Get Smart", - "Description": "Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"—James Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]", - "Photos": [ - { - "id": "attaef7e86f0bd75e", - "url": "https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI", - "filename": "250px-Get_Smart.gif", - "size": 30619, - "type": "image/gif", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z" - }, - "large": { - "url": "https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89" - } - } - } - ], - "Actors": [ - "rec77b0b4ba0b730e", - "rec43ef994a3465e5" - ], - "Director": [ - "rec2bb32ef25348fa" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:50:49.000Z" - }, - { - "id": "rec2ed6bdd802c584", - "fields": { - "Name": "Forrest Gump", - "Description": "Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a naïve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.", - "Photos": [ - { - "id": "att82e0b9087885c0", - "url": "https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT", - "filename": "220px-Forrest_Gump_poster.jpg", - "size": 16749, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ" - }, - "large": { - "url": "https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0" - } - } - } - ], - "Actors": [ - "recf38022b2f0db0d" - ], - "Director": [ - "rec09887e80a2692e" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T04:56:05.000Z" - }, - { - "id": "recfb77014d57c75b", - "fields": { - "Name": "Fight Club", - "Description": "Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.", - "Photos": [ - { - "id": "att69a5df8e344259", - "url": "https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY", - "filename": "220px-Fight_Club_poster.jpg", - "size": 17360, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a" - }, - "large": { - "url": "https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x" - } - } - } - ], - "Actors": [ - "rec3e27ca40e9cb7e" - ], - "Director": [ - "rec16a8af30615da0" - ], - "Genre": [ - "Drama" - ] - }, - "createdTime": "2014-07-18T05:00:11.000Z" - }, - { - "id": "recedd526ce84cbd2", - "fields": { - "Name": "Caddyshack", - "Description": "Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.", - "Photos": [ - { - "id": "att995467ff4b5f04", - "url": "https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w", - "filename": "220px-Caddyshack_poster.jpg", - "size": 30647, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY" - }, - "large": { - "url": "https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD" - } - } - } - ], - "Actors": [ - "rec9b8f53c739a551" - ], - "Director": [ - "rec05389cff1679e5" - ], - "Genre": [ - "Comedy" - ] - }, - "createdTime": "2014-07-18T04:45:28.000Z" - }, - { - "id": "rec6c1b6022782cd8", - "fields": { - "Name": "Billy Madison", - "Description": "Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.", - "Photos": [ - { - "id": "att2a05739d6534e4", - "url": "https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1", - "filename": "220px-Billy_madison_poster.jpg", - "size": 24774, - "type": "image/jpeg", - "thumbnails": { - "small": { - "url": "https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka" - }, - "large": { - "url": "https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo" - } - } - } - ], - "Actors": [ - "rece266d5762b5240" - ], - "Director": [ - "rec4270d52105811e" - ], - "Genre": [ - "Romantic Comedy" - ] - }, - "createdTime": "2014-07-18T04:54:18.000Z" - } - ] -} diff --git a/src/test/resources/__files/body-ParameterSelectFields.json b/src/test/resources/__files/body-ParameterSelectFields.json deleted file mode 100644 index a3f88e6..0000000 --- a/src/test/resources/__files/body-ParameterSelectFields.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "records":[ - { - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec2ed6bdd802c584", - "fields":{ - "Name":"Forrest Gump" - }, - "createdTime":"2014-07-18T04:56:05.000Z" - }, - { - "id":"rec3ce936056bbf7b", - "fields":{ - "Name":"You've got Mail" - }, - "createdTime":"2014-07-18T04:52:02.000Z" - }, - { - "id":"rec6733da527dd0f1", - "fields":{ - "Name":"The Godfather" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec6c1b6022782cd8", - "fields":{ - "Name":"Billy Madison" - }, - "createdTime":"2014-07-18T04:54:18.000Z" - } - ] -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ParameterSelectFormula.json b/src/test/resources/__files/body-ParameterSelectFormula.json deleted file mode 100644 index d352570..0000000 --- a/src/test/resources/__files/body-ParameterSelectFormula.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "records":[ - { - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act" - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }, - { - "id":"rec2ed6bdd802c584", - "fields":{ - "Name":"Forrest Gump" - }, - "createdTime":"2014-07-18T04:56:05.000Z" - } - ] -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ParameterSelectMaxRecords.json b/src/test/resources/__files/body-ParameterSelectMaxRecords.json deleted file mode 100644 index 18675f9..0000000 --- a/src/test/resources/__files/body-ParameterSelectMaxRecords.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "records":[{ - "id":"rec110972df115479", - "fields":{ - "Name":"Sister Act", - "Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.", - "Photos":[{ - "id":"att9141430d2b6dc1", - "url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r", - "filename":"Sister_Act_film_poster.jpg", - "size":19805, - "type":"image/jpeg", - "thumbnails":{ - "small":{ - "url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy" - }, - "large":{ - "url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg" - }} - }], - "Actors":["rec73fcac60a91bc1"], - "Director":["rec114faab248e582"], - "Genre":["Comedy"] - }, - "createdTime":"2014-07-18T04:42:06.000Z" - }] -} \ No newline at end of file diff --git a/src/test/resources/__files/body-ParameterSelectPageSize.json b/src/test/resources/__files/body-ParameterSelectPageSize.json deleted file mode 100644 index 2ef12a3..0000000 --- a/src/test/resources/__files/body-ParameterSelectPageSize.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"rec110972df115479","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9141430d2b6dc1","url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r","filename":"Sister_Act_film_poster.jpg","size":19805,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy"},"large":{"url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg"}}}],"Actors":["rec73fcac60a91bc1"],"Director":["rec114faab248e582"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"rec3ce936056bbf7b","fields":{"Name":"You've got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Mikl├│s L├íszl├│. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly ÔÇö a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"atte28f9aa6e2118a","url":"https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS","filename":"220px-You've_Got_Mail.jpg","size":24847,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz"},"large":{"url":"https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB"}}}],"Actors":["recf38022b2f0db0d","rece0feb637db7618"],"Director":["rec738f48b44cc24c"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6c1b6022782cd8","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"att2a05739d6534e4","url":"https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1","filename":"220px-Billy_madison_poster.jpg","size":24774,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka"},"large":{"url":"https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo"}}}],"Actors":["rece266d5762b5240"],"Director":["rec4270d52105811e"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recedd526ce84cbd2","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"att995467ff4b5f04","url":"https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w","filename":"220px-Caddyshack_poster.jpg","size":30647,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY"},"large":{"url":"https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD"}}}],"Actors":["rec9b8f53c739a551"],"Director":["rec05389cff1679e5"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"recee114d18a0a3c8","fields":{"Name":"Get Smart","Description":"Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"ÔÇöJames Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]","Photos":[{"id":"attaef7e86f0bd75e","url":"https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI","filename":"250px-Get_Smart.gif","size":30619,"type":"image/gif","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z"},"large":{"url":"https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89"}}}],"Actors":["rec77b0b4ba0b730e","rec43ef994a3465e5"],"Director":["rec2bb32ef25348fa"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:50:49.000Z"},{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/body-ParameterSelectSort.json b/src/test/resources/__files/body-ParameterSelectSort.json deleted file mode 100644 index d538c5c..0000000 --- a/src/test/resources/__files/body-ParameterSelectSort.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"rec3ce936056bbf7b","fields":{"Name":"You've got Mail","Description":"You've Got Mail is a 1998 American romantic comedy film directed by Nora Ephron, starring Tom Hanks and Meg Ryan. It was written by Nora and Delia Ephron based on the 1937[2] play Parfumerie by Mikl├│s L├íszl├│. The film is about two e-mailing lovers who are completely unaware that their sweetheart is, in fact, a person with whom they share a degree of animosity. An adaptation of Parfumerie was previously made as The Shop Around the Corner, a 1940 film by Ernst Lubitsch and also a 1949 musical remake, In the Good Old Summertime by Robert Z. Leonard starring Judy Garland. You've Got Mail updates that concept with the use of e-mail. Influences from Jane Austen's Pride and Prejudice can also be seen in the relationship between Joe Fox and Kathleen Kelly ÔÇö a reference pointed out by these characters actually discussing Mr. Darcy and Miss Bennet in the film. Ephron stated that You've Got Mail was as much about the Upper West Side itself as the characters, highlighting the \"small town community\" feel that pervades the Upper West Side.","Photos":[{"id":"atte28f9aa6e2118a","url":"https://www.filepicker.io/api/file/YxAJhvLQxieJ65jaFNVS","filename":"220px-You've_Got_Mail.jpg","size":24847,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/VFxf2YHAToyWmp164zbz"},"large":{"url":"https://www.filepicker.io/api/file/xG4toiPRfOeDcQa6e3cB"}}}],"Actors":["recf38022b2f0db0d","rece0feb637db7618"],"Director":["rec738f48b44cc24c"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:52:02.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec110972df115479","fields":{"Name":"Sister Act","Description":"Sister Act is a 1992 American comedy film released by Touchstone Pictures. Directed by Emile Ardolino, it features musical arrangements by Marc Shaiman and stars Whoopi Goldberg as a Reno lounge singer who has been put under protective custody in a San Francisco convent of Poor Clares and has to pretend to be a nun when a mob boss puts her on his hit list. Also in the cast are Maggie Smith, Kathy Najimy, Wendy Makkena, Mary Wickes, and Harvey Keitel.","Photos":[{"id":"att9141430d2b6dc1","url":"https://www.filepicker.io/api/file/tav0vGKoTjiyMcbjsx3r","filename":"Sister_Act_film_poster.jpg","size":19805,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/IiTD31iiQ32mRI6KYEzy"},"large":{"url":"https://www.filepicker.io/api/file/Oczxr4sYQ2lrA3ppGMhg"}}}],"Actors":["rec73fcac60a91bc1"],"Director":["rec114faab248e582"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"recee114d18a0a3c8","fields":{"Name":"Get Smart","Description":"Get Smart is an American comedy television series that satirizes the secret agent genre. Created by Mel Brooks with Buck Henry,[1] the show stars Don Adams (as Maxwell Smart, Agent 86), Barbara Feldon (as Agent 99), and Edward Platt (as Chief). Henry said they created the show by request of Daniel Melnick, who was a partner, along with Leonard Stern and David Susskind, of the show's production company, Talent Associates, to capitalize on \"the two biggest things in the entertainment world today\"ÔÇöJames Bond and Inspector Clouseau.[2] Brooks said: \"It's an insane combination of James Bond and Mel Brooks comedy.\"[3]","Photos":[{"id":"attaef7e86f0bd75e","url":"https://www.filepicker.io/api/file/Rta8Uy2xQ8mtl1oWl0YI","filename":"250px-Get_Smart.gif","size":30619,"type":"image/gif","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/vxz10zbjRlSRe0RmV00z"},"large":{"url":"https://www.filepicker.io/api/file/ZmFQD36wRTuVzzgZei89"}}}],"Actors":["rec77b0b4ba0b730e","rec43ef994a3465e5"],"Director":["rec2bb32ef25348fa"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:50:49.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"recedd526ce84cbd2","fields":{"Name":"Caddyshack","Description":"Caddyshack is a 1980 American sports comedy film directed by Harold Ramis and written by Brian Doyle-Murray, Ramis and Douglas Kenney. It stars Chevy Chase, Rodney Dangerfield, Ted Knight, and Bill Murray. Doyle-Murray also has a supporting role.","Photos":[{"id":"att995467ff4b5f04","url":"https://www.filepicker.io/api/file/SslWgZqRA2Slb1ehJJ2w","filename":"220px-Caddyshack_poster.jpg","size":30647,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/nLMlyHwdR3OhodMZDIJY"},"large":{"url":"https://www.filepicker.io/api/file/n3NMoBTETeWOFJWaMljD"}}}],"Actors":["rec9b8f53c739a551"],"Director":["rec05389cff1679e5"],"Genre":["Comedy"]},"createdTime":"2014-07-18T04:45:28.000Z"},{"id":"rec6c1b6022782cd8","fields":{"Name":"Billy Madison","Description":"Billy Madison is a 1995 American comedy film directed by Tamra Davis. It stars Adam Sandler in the title role, along with Bradley Whitford, Bridgette Wilson, Norm Macdonald and Darren McGavin. The film was written by Sandler and Tim Herlihy, and produced by Robert Simonds. It made over $26.4 million worldwide and debuted at #1.[1] The film is about a slacker (Billy Madison) who must go back to school in order to take over his father's company. The comedy also features Chris Farley and Steve Buscemi with uncredited appearances. Sandler would later form a production company, Happy Madison Productions, named after a combination of this film's title character and Happy Gilmore's.","Photos":[{"id":"att2a05739d6534e4","url":"https://www.filepicker.io/api/file/fVo6zj3jSJ6Ws2cnT2I1","filename":"220px-Billy_madison_poster.jpg","size":24774,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/d9InPcLIRfaKlWZyr1ka"},"large":{"url":"https://www.filepicker.io/api/file/oC6mPKYuSHO3rIOaEzpo"}}}],"Actors":["rece266d5762b5240"],"Director":["rec4270d52105811e"],"Genre":["Romantic Comedy"]},"createdTime":"2014-07-18T04:54:18.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/body-ParameterSelectView.json b/src/test/resources/__files/body-ParameterSelectView.json deleted file mode 100644 index 092bf36..0000000 --- a/src/test/resources/__files/body-ParameterSelectView.json +++ /dev/null @@ -1 +0,0 @@ -{"records":[{"id":"recfb77014d57c75b","fields":{"Name":"Fight Club","Description":"Fight Club is a 1999 film based on the 1996 novel of the same name by Chuck Palahniuk. The film was directed by David Fincher and stars Edward Norton, Brad Pitt, and Helena Bonham Carter. Norton plays the unnamed protagonist, an \"everyman\" who is discontented with his white-collar job. He forms a \"fight club\" with soap maker Tyler Durden, played by Pitt, and they are joined by men who also want to fight recreationally. The narrator becomes embroiled in a relationship with Durden and a dissolute woman, Marla Singer, played by Bonham Carter.","Photos":[{"id":"att69a5df8e344259","url":"https://www.filepicker.io/api/file/xyCDil2QVapaBg6IOmpY","filename":"220px-Fight_Club_poster.jpg","size":17360,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/qsJN64oeTiOErlaJuY0a"},"large":{"url":"https://www.filepicker.io/api/file/qP62vcLrSJivZlZ0Hm9x"}}}],"Actors":["rec3e27ca40e9cb7e"],"Director":["rec16a8af30615da0"],"Genre":["Drama"]},"createdTime":"2014-07-18T05:00:11.000Z"},{"id":"rec2ed6bdd802c584","fields":{"Name":"Forrest Gump","Description":"Forrest Gump is a 1994 American epic romantic comedy-drama film based on the 1986 novel of the same name by Winston Groom. The film was directed by Robert Zemeckis and starred Tom Hanks, Robin Wright, Gary Sinise and Sally Field. The story depicts several decades in the life of Forrest Gump, a na├»ve and slow-witted yet athletically prodigious native of Alabama who witnesses, and in some cases influences, some of the defining events of the latter half of the 20th century in the United States; more specifically, the period between Forrest's birth in 1944 and 1982.","Photos":[{"id":"att82e0b9087885c0","url":"https://www.filepicker.io/api/file/zJDqSxaWS5SaHvOh1bZT","filename":"220px-Forrest_Gump_poster.jpg","size":16749,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/CrFAmlQGuPXUvYo4bEXQ"},"large":{"url":"https://www.filepicker.io/api/file/QfqP0RxhT16M1Ihnl8s0"}}}],"Actors":["recf38022b2f0db0d"],"Director":["rec09887e80a2692e"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:56:05.000Z"},{"id":"recbe0b3c80a7f198","fields":{"Name":"Pulp Fiction","Description":"Pulp Fiction is a 1994 American black comedy crime film directed by Quentin Tarantino, who also co-wrote the screenplay with Roger Avary.[4] The film is known for its eclectic dialogue, ironic mix of humor and violence, nonlinear storyline, and a host of cinematic allusions and pop culture references. The film was nominated for seven Oscars, including Best Picture; Tarantino and Avary won for Best Original Screenplay. It was also awarded the Palme d'Or at the 1994 Cannes Film Festival. A major critical and commercial success, it revitalized the career of its leading man, John Travolta, who received an Academy Award nomination, as did costars Samuel L. Jackson and Uma Thurman.","Photos":[{"id":"att2ffd5c8228a3b4","url":"https://www.filepicker.io/api/file/zmp3hzNfSBeVQ0VVgeGo","filename":"215px-Pulp_Fiction_cover.jpg","size":25639,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/SQUt2mMNRECklIZGo1YQ"},"large":{"url":"https://www.filepicker.io/api/file/bLnd5eRDR0CCqHvwYrzd"}}}],"Actors":["recb59fc29ee5d646","rec6e2912ac04090c","recaad7f7c2fc0250"],"Director":["rec6caf9605f137c9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"},{"id":"rec6f45f58180d5c7","fields":{"Name":"Seven Samurai","Description":"Seven Samurai[1] (???? Shichinin no Samurai?) is a 1954 Japanese period adventure drama film co-written, edited, and directed by Akira Kurosawa. The film takes place in 1587 during the Warring States Period of Japan. It follows the story of a village of farmers that hire seven masterless samurai (ronin) to combat bandits who will return after the harvest to steal their crops.","Photos":[{"id":"attfb51ccc438566b","url":"https://www.filepicker.io/api/file/dwIdgUEQweSkN4KzLLWQ","filename":"Seven_Samurai_movie_poster.jpg","size":37313,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/hAByh5GPS5CshvPRvSGI"},"large":{"url":"https://www.filepicker.io/api/file/Pfw2GtXBQanfuaxLgEKW"}}}],"Actors":["rec256a53744da609"],"Director":["rec051acc552ecc58"],"Genre":["Adventure","Drama"]},"createdTime":"2014-07-18T04:57:03.000Z"},{"id":"rec6733da527dd0f1","fields":{"Name":"The Godfather","Description":"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selling novel novel of the same name. The film stars Marlon Brando and Al Pacino as the leaders of a fictional New York crime family. The story, spanning the years 1945 to 1955, centers on the transformation of Michael Corleone from reluctant family outsider to ruthless Mafia boss while also chronicling the family under the patriarch Vito Corleone.","Photos":[{"id":"att6dba4af5786df1","url":"https://www.filepicker.io/api/file/akW7wUX7QM66a2hjxb9k","filename":"220px-TheGodfatherAlPacinoMarlonBrando.jpg","size":16420,"type":"image/jpeg","thumbnails":{"small":{"url":"https://www.filepicker.io/api/file/XvbySDtbSxymbbUJzCoN"},"large":{"url":"https://www.filepicker.io/api/file/Fpc86btaS1Stl79SvHX4"}}},{"id":"attzWvarnmYBBd2Wm","url":"https://dl.airtable.com/jJqBm304SBWBrF3dXn12_Lighthouse.jpg","filename":"Lighthouse.jpg","size":561276,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/MbdRAn4ZQLuNyUqrHONp_small_Lighthouse.jpg","width":48,"height":36},"large":{"url":"https://dl.airtable.com/8QX7f3nSAe6lrOxeuvTP_large_Lighthouse.jpg","width":512,"height":512}}}],"Actors":["recc8841a14245b0b","rec514228ed76ced1"],"Director":["recfaf64fe0db19a9"],"Genre":["Drama"]},"createdTime":"2014-07-18T04:42:06.000Z"}]} \ No newline at end of file diff --git a/src/test/resources/__files/body-SerializedName.json b/src/test/resources/__files/body-SerializedName.json deleted file mode 100644 index be48906..0000000 --- a/src/test/resources/__files/body-SerializedName.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "records": [ - { - "id": "rec514228ed76ced1", - "fields": { - "First- & Lastname": "Marlon Brando", - "Filmography": [ - "rec6733da527dd0f1" - ], - "Biography of Actor": "Marlon Brando, Jr. (April 3, 1924 – July 1, 2004) was an American actor. He is hailed for bringing a gripping realism to film acting, and is widely co..." - }, - "createdTime": "2014-07-18T04:48:25.000Z" - } - ] -} \ No newline at end of file diff --git a/src/test/resources/__files/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json b/src/test/resources/__files/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json new file mode 100644 index 0000000..555739d --- /dev/null +++ b/src/test/resources/__files/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json @@ -0,0 +1 @@ +{"error":"NOT_FOUND"} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json b/src/test/resources/mappings/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json new file mode 100644 index 0000000..c25dcf4 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json @@ -0,0 +1,39 @@ +{ + "id" : "7339b89b-4783-4b03-9c07-8f538ce01fa4", + "name" : "appttha5pfjnvfjdu_actors", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Actors", + "method" : "POST", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + }, + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":{\"Name\":\"Neuer Actor\"}}", + "ignoreArrayOrder" : false, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_actors-7339b89b-4783-4b03-9c07-8f538ce01fa4.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:24 GMT", + "ETag" : "W/\"63-2lUdJY5Bax/eu11jWcyAVPek29Q\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "7339b89b-4783-4b03-9c07-8f538ce01fa4", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json new file mode 100644 index 0000000..640a3c8 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json @@ -0,0 +1,30 @@ +{ + "id" : "4bace684-7816-4a02-810d-cc1593ed8aad", + "name" : "appttha5pfjnvfjdu_actors_not-succesfull", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Actors/not%20succesfull", + "method" : "DELETE", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 404, + "bodyFileName" : "appttha5pfjnvfjdu_actors_not-succesfull-4bace684-7816-4a02-810d-cc1593ed8aad.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:38 GMT", + "ETag" : "W/\"15-tcRCab2ZDkTZ4I9Oh2TI8Kt8AAg\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "4bace684-7816-4a02-810d-cc1593ed8aad", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json new file mode 100644 index 0000000..739afec --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json @@ -0,0 +1,30 @@ +{ + "id" : "38fd29a8-bb4f-41b2-9481-a173df9d4c4f", + "name" : "appttha5pfjnvfjdu_actors_notexistend", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Actors/notexistend", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 404, + "bodyFileName" : "appttha5pfjnvfjdu_actors_notexistend-38fd29a8-bb4f-41b2-9481-a173df9d4c4f.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:07:56 GMT", + "ETag" : "W/\"15-tcRCab2ZDkTZ4I9Oh2TI8Kt8AAg\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "38fd29a8-bb4f-41b2-9481-a173df9d4c4f", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json new file mode 100644 index 0000000..c2aebb4 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json @@ -0,0 +1,39 @@ +{ + "id" : "cc8a35db-9c22-4784-ac50-3608eb7f0479", + "name" : "appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Actors/recEtUIW6FWtbEDKz", + "method" : "PATCH", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + }, + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":{\"Name\":\"Neuer Name\"}}", + "ignoreArrayOrder" : false, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-cc8a35db-9c22-4784-ac50-3608eb7f0479.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:49 GMT", + "ETag" : "W/\"58b-EX4YxFerjhFAbJKAQmHQt7IMjAY\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "cc8a35db-9c22-4784-ac50-3608eb7f0479", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json new file mode 100644 index 0000000..506da5a --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json @@ -0,0 +1,30 @@ +{ + "id" : "e36f3789-bee2-47d2-bc54-1d12addcac25", + "name" : "appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Actors/recEtUIW6FWtbEDKz", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_actors_recetuiw6fwtbedkz-e36f3789-bee2-47d2-bc54-1d12addcac25.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:07:57 GMT", + "ETag" : "W/\"57a-7kicp2MJGCyJKafkS+SdX29FZLI\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "e36f3789-bee2-47d2-bc54-1d12addcac25", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json new file mode 100644 index 0000000..ced2266 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json @@ -0,0 +1,34 @@ +{ + "id" : "0b6ca0e6-a47c-4958-9748-58312c742392", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-0b6ca0e6-a47c-4958-9748-58312c742392.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:14 GMT", + "ETag" : "W/\"2d92-XxA0CQ3gnAWLvaT+1cJ9ZBUbSwo\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "0b6ca0e6-a47c-4958-9748-58312c742392", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json new file mode 100644 index 0000000..831a522 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json @@ -0,0 +1,34 @@ +{ + "id" : "11b60da8-5303-4dc6-a004-a4b5e6a52095", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?pageSize=10", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-11b60da8-5303-4dc6-a004-a4b5e6a52095.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:11 GMT", + "ETag" : "W/\"2d92-MN9ISncYSwdiyAqf4/jZC75Tm8A\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "11b60da8-5303-4dc6-a004-a4b5e6a52095", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json new file mode 100644 index 0000000..cbc57e9 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json @@ -0,0 +1,34 @@ +{ + "id" : "24724d8d-2f58-4fea-b000-ea5e403c9bdb", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?maxRecords=2", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-24724d8d-2f58-4fea-b000-ea5e403c9bdb.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:09 GMT", + "ETag" : "W/\"941-uC+lOvjYmHsP1w/ihII9wL7iDy0\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "24724d8d-2f58-4fea-b000-ea5e403c9bdb", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json new file mode 100644 index 0000000..920459e --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json @@ -0,0 +1,34 @@ +{ + "id" : "2d322fc9-6a85-4fdb-8016-6041fa8edf2e", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?pageSize=3", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-2d322fc9-6a85-4fdb-8016-6041fa8edf2e.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:12 GMT", + "ETag" : "W/\"104f-9mhlgJLbtrJ4/mbT0C5blYKsqKg\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "2d322fc9-6a85-4fdb-8016-6041fa8edf2e", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json new file mode 100644 index 0000000..118ad9f --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json @@ -0,0 +1,34 @@ +{ + "id" : "2d7d4b48-ff3d-4019-affc-c1836d6d8e6c", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=asc", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-2d7d4b48-ff3d-4019-affc-c1836d6d8e6c.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:54 GMT", + "ETag" : "W/\"2d92-VnYR2pum4whGo4SAgTn962gr2ck\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "2d7d4b48-ff3d-4019-affc-c1836d6d8e6c", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json new file mode 100644 index 0000000..6a15376 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json @@ -0,0 +1,39 @@ +{ + "id" : "48c8b998-a8d0-48e9-a98d-d74d24491e49", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies", + "method" : "POST", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + }, + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Photos\":[{\"id\":\"1\",\"url\":\"https://www.example.imgae.file1.de\"}]}}", + "ignoreArrayOrder" : false, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 422, + "bodyFileName" : "appttha5pfjnvfjdu_movies-48c8b998-a8d0-48e9-a98d-d74d24491e49.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:23 GMT", + "ETag" : "W/\"b0-FHo5KKFWPz6U3Tj5V/o2ECWDrSU\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "48c8b998-a8d0-48e9-a98d-d74d24491e49", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json new file mode 100644 index 0000000..dd6d2d8 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json @@ -0,0 +1,34 @@ +{ + "id" : "4a5d270d-f108-4f93-81f5-329b2a074026", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?pageSize=3&offset=itrXLN3EPT3UMhyqp%2FrecCo4zX4HOsgDEEJ", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-4a5d270d-f108-4f93-81f5-329b2a074026.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:12 GMT", + "ETag" : "W/\"1019-aXjPJj6TbrDTn3ABm1QOYniinQE\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "4a5d270d-f108-4f93-81f5-329b2a074026", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json new file mode 100644 index 0000000..683c869 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json @@ -0,0 +1,39 @@ +{ + "id" : "51338c9f-b2ed-4c09-8a13-a02fa88fcb99", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies", + "method" : "POST", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + }, + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Description\":\"Irgendwas\",\"Director\":[\"recPxOZblV8yJU4mY\"],\"Actors\":[\"recEtUIW6FWtbEDKz\",\"recInYFZ1DQpeCuSz\"],\"Genre\":[\"Drama\"]}}", + "ignoreArrayOrder" : false, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-51338c9f-b2ed-4c09-8a13-a02fa88fcb99.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:25 GMT", + "ETag" : "W/\"e2-YrCOgb6ulCTkmGQewtAPiG3BrqQ\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "51338c9f-b2ed-4c09-8a13-a02fa88fcb99", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json new file mode 100644 index 0000000..504ea9b --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json @@ -0,0 +1,34 @@ +{ + "id" : "68129618-f52a-46c7-890b-efdab40ee08f", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?view=Dramas", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-68129618-f52a-46c7-890b-efdab40ee08f.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:13 GMT", + "ETag" : "W/\"19cf-ahl+d0fM0M6JTJg98qhpomKZ1jI\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "68129618-f52a-46c7-890b-efdab40ee08f", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json new file mode 100644 index 0000000..5cd9191 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json @@ -0,0 +1,34 @@ +{ + "id" : "68160dad-c762-481f-86d4-1372db3bdf01", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?view=Main+View", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-68160dad-c762-481f-86d4-1372db3bdf01.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:56 GMT", + "ETag" : "W/\"2d92-QF96QJzKNAHUnc4q8m5oFQCNsXc\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "68160dad-c762-481f-86d4-1372db3bdf01", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json new file mode 100644 index 0000000..a6a487a --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json @@ -0,0 +1,34 @@ +{ + "id" : "6d9c7205-4268-4f63-a500-3150a039404c", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?pageSize=3&offset=itrXLN3EPT3UMhyqp%2FrecFrUv93z0u5FuJF", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-6d9c7205-4268-4f63-a500-3150a039404c.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:13 GMT", + "ETag" : "W/\"da2-P/QlIyvbi5jXacu/nHt3FeQUe7w\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "6d9c7205-4268-4f63-a500-3150a039404c", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json new file mode 100644 index 0000000..676c8af --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json @@ -0,0 +1,39 @@ +{ + "id" : "bb5553df-2eee-4dae-8916-1a292290f92b", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies", + "method" : "POST", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + }, + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Photos\":[{\"url\":\"https://www.example.imgae.file1.de\"},{\"url\":\"https://www.example.imgae.file2.de\"}]}}", + "ignoreArrayOrder" : false, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-bb5553df-2eee-4dae-8916-1a292290f92b.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:09:26 GMT", + "ETag" : "W/\"139-NxJexOkTTnujok9tSJlCo7bvj3M\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "bb5553df-2eee-4dae-8916-1a292290f92b", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json new file mode 100644 index 0000000..dc641ca --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json @@ -0,0 +1,34 @@ +{ + "id" : "c7639337-faaa-4f0c-b63d-29e3f779ff3f", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?fields%5B%5D=Name", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-c7639337-faaa-4f0c-b63d-29e3f779ff3f.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:10 GMT", + "ETag" : "W/\"39a-pylScIMiJ//OZsIGEtysymn/kLg\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "c7639337-faaa-4f0c-b63d-29e3f779ff3f", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json new file mode 100644 index 0000000..10ceda4 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json @@ -0,0 +1,34 @@ +{ + "id" : "d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?filterByFormula=NOT%28%7BName%7D+%3D+%27%27%29", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:11 GMT", + "ETag" : "W/\"2d92-MN9ISncYSwdiyAqf4/jZC75Tm8A\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "d65ad9fb-4b1d-4d68-a709-f7daf62e7cd8", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json new file mode 100644 index 0000000..f47c72f --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json @@ -0,0 +1,34 @@ +{ + "id" : "e06cff34-4056-4a90-8fd9-fee9fd660586", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-e06cff34-4056-4a90-8fd9-fee9fd660586.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:55 GMT", + "ETag" : "W/\"2d92-MN9ISncYSwdiyAqf4/jZC75Tm8A\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "e06cff34-4056-4a90-8fd9-fee9fd660586", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json new file mode 100644 index 0000000..ed70d82 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json @@ -0,0 +1,34 @@ +{ + "id" : "f761fc98-71d2-41db-85ca-be96f15d408c", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?maxRecords=2", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-f761fc98-71d2-41db-85ca-be96f15d408c.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:56 GMT", + "ETag" : "W/\"941-uC+lOvjYmHsP1w/ihII9wL7iDy0\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "f761fc98-71d2-41db-85ca-be96f15d408c", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json new file mode 100644 index 0000000..d04cbdd --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json @@ -0,0 +1,34 @@ +{ + "id" : "f7acecbb-ed53-4dc4-8aea-f8561dae1f53", + "name" : "appttha5pfjnvfjdu_movies", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies-f7acecbb-ed53-4dc4-8aea-f8561dae1f53.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:54 GMT", + "ETag" : "W/\"2d92-XxA0CQ3gnAWLvaT+1cJ9ZBUbSwo\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "f7acecbb-ed53-4dc4-8aea-f8561dae1f53", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json new file mode 100644 index 0000000..9d1a27b --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json @@ -0,0 +1,30 @@ +{ + "id" : "177939f3-ddc4-4a1c-92bc-5a3dc93183d4", + "name" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies/recFj9J78MLtiFFMz", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-177939f3-ddc4-4a1c-92bc-5a3dc93183d4.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:07:13 GMT", + "ETag" : "W/\"67b-1DcxsW1zMTbzZlI64cGdbpdBvs4\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "177939f3-ddc4-4a1c-92bc-5a3dc93183d4", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json new file mode 100644 index 0000000..a19bf85 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json @@ -0,0 +1,30 @@ +{ + "id" : "aab5592a-0981-4b94-b9ce-da632df2bb73", + "name" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies/recFj9J78MLtiFFMz", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-aab5592a-0981-4b94-b9ce-da632df2bb73.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:06:14 GMT", + "ETag" : "W/\"67b-1DcxsW1zMTbzZlI64cGdbpdBvs4\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "aab5592a-0981-4b94-b9ce-da632df2bb73", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json new file mode 100644 index 0000000..276416d --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json @@ -0,0 +1,30 @@ +{ + "id" : "bbbe2e3f-4ee4-4930-807b-db29303e1800", + "name" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies/recFj9J78MLtiFFMz", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-bbbe2e3f-4ee4-4930-807b-db29303e1800.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:07:15 GMT", + "ETag" : "W/\"67b-1DcxsW1zMTbzZlI64cGdbpdBvs4\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "bbbe2e3f-4ee4-4930-807b-db29303e1800", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json new file mode 100644 index 0000000..cb7bf76 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json @@ -0,0 +1,30 @@ +{ + "id" : "e28faa25-a908-4e68-8826-be8edecccd4e", + "name" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/Movies/recFj9J78MLtiFFMz", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + } + } + }, + "response" : { + "status" : 200, + "bodyFileName" : "appttha5pfjnvfjdu_movies_recfj9j78mltiffmz-e28faa25-a908-4e68-8826-be8edecccd4e.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:07:14 GMT", + "ETag" : "W/\"67b-1DcxsW1zMTbzZlI64cGdbpdBvs4\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "e28faa25-a908-4e68-8826-be8edecccd4e", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json b/src/test/resources/mappings/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json new file mode 100644 index 0000000..dba8f76 --- /dev/null +++ b/src/test/resources/mappings/appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json @@ -0,0 +1,34 @@ +{ + "id" : "cdeabff0-2dc1-46d0-9ea7-6849df0303b5", + "name" : "appttha5pfjnvfjdu_notexists", + "request" : { + "url" : "/appTtHA5PfJnVfjdu/NotExists", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "application/json" + }, + "Content-Type" : { + "equalTo" : "application/json", + "caseInsensitive" : true + } + } + }, + "response" : { + "status" : 404, + "bodyFileName" : "appttha5pfjnvfjdu_notexists-cdeabff0-2dc1-46d0-9ea7-6849df0303b5.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:08:57 GMT", + "ETag" : "W/\"70-+tcoMcc8IP8D9SEJsCke+gfZhwU\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "cdeabff0-2dc1-46d0-9ea7-6849df0303b5", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json b/src/test/resources/mappings/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json new file mode 100644 index 0000000..67dee50 --- /dev/null +++ b/src/test/resources/mappings/faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json @@ -0,0 +1,30 @@ +{ + "id" : "cf88d9f4-0663-4a23-a485-1700111e0476", + "name" : "faviconico", + "request" : { + "url" : "/favicon.ico", + "method" : "GET", + "headers" : { + "Accept" : { + "equalTo" : "image/webp,image/apng,image/*,*/*;q=0.8" + } + } + }, + "response" : { + "status" : 404, + "bodyFileName" : "faviconico-cf88d9f4-0663-4a23-a485-1700111e0476.json", + "headers" : { + "access-control-allow-headers" : "content-type, authorization, content-length, x-requested-with, x-api-version, x-airtable-application-id", + "access-control-allow-methods" : "GET,PUT,POST,PATCH,DELETE,OPTIONS", + "access-control-allow-origin" : "*", + "Content-Type" : "application/json; charset=utf-8", + "Date" : "Thu, 14 Sep 2017 10:00:19 GMT", + "ETag" : "W/\"15-tcRCab2ZDkTZ4I9Oh2TI8Kt8AAg\"", + "Server" : "Tengine", + "Vary" : "Accept-Encoding", + "Connection" : "keep-alive" + } + }, + "uuid" : "cf88d9f4-0663-4a23-a485-1700111e0476", + "persistent" : true +} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorCreate.json b/src/test/resources/mappings/mapping-ActorCreate.json deleted file mode 100644 index 0c3924c..0000000 --- a/src/test/resources/mappings/mapping-ActorCreate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\": \"Neuer Actor\"}}"}] - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorCreate.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorDelete.json b/src/test/resources/mappings/mapping-ActorDelete.json deleted file mode 100644 index 0ce8f0e..0000000 --- a/src/test/resources/mappings/mapping-ActorDelete.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/recapJ3Js8AEwt0Bf", - "method" : "DELETE" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorDelete.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorUpdate.json b/src/test/resources/mappings/mapping-ActorUpdate.json deleted file mode 100644 index 29fb493..0000000 --- a/src/test/resources/mappings/mapping-ActorUpdate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/rec514228ed76ced1", - "method" : "PATCH", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\": \"Neuer Name\"}}"}] - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorUpdate.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorsFind.json b/src/test/resources/mappings/mapping-ActorsFind.json deleted file mode 100644 index dc1fafa..0000000 --- a/src/test/resources/mappings/mapping-ActorsFind.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors/rec514228ed76ced1", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ActorFind.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorsList.json b/src/test/resources/mappings/mapping-ActorsList.json deleted file mode 100644 index 9b8460e..0000000 --- a/src/test/resources/mappings/mapping-ActorsList.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Actors", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-Actors.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ActorsListSerializedNames.json b/src/test/resources/mappings/mapping-ActorsListSerializedNames.json deleted file mode 100644 index 4355bc9..0000000 --- a/src/test/resources/mappings/mapping-ActorsListSerializedNames.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/SerializedNames", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-SerializedName.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MovieCreate.json b/src/test/resources/mappings/mapping-MovieCreate.json deleted file mode 100644 index cb3d7c9..0000000 --- a/src/test/resources/mappings/mapping-MovieCreate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Description\":\"Irgendwas\",\"Director\":[\"recfaf64fe0db19a9\"],\"Actors\":[\"recc8841a14245b0b\",\"rec514228ed76ced1\"],\"Genre\":[\"Drama\"]}}", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - }] -}, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MovieCreate.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MovieCreate2.json b/src/test/resources/mappings/mapping-MovieCreate2.json deleted file mode 100644 index 0e0edd0..0000000 --- a/src/test/resources/mappings/mapping-MovieCreate2.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "POST", - "bodyPatterns" : [{"equalToJson" : "{\"fields\":{\"Name\":\"Neuer Film\",\"Photos\": [{\"url\":\"https://www.example.imgae.file1.de\"},{\"url\":\"https://www.example.imgae.file2.de\"}]}}", - "ignoreArrayOrder" : true, - "ignoreExtraElements" : true - }] -}, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MovieCreate2.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MovieFind.json b/src/test/resources/mappings/mapping-MovieFind.json deleted file mode 100644 index 326b51b..0000000 --- a/src/test/resources/mappings/mapping-MovieFind.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies/rec6733da527dd0f1", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesFind.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MoviesList.json b/src/test/resources/mappings/mapping-MoviesList.json deleted file mode 100644 index 50d53e5..0000000 --- a/src/test/resources/mappings/mapping-MoviesList.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-Movies.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MoviesListMainView.json b/src/test/resources/mappings/mapping-MoviesListMainView.json deleted file mode 100644 index 55e50eb..0000000 --- a/src/test/resources/mappings/mapping-MoviesListMainView.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?view=Main+View", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesMainView.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MoviesListMaxRecords.json b/src/test/resources/mappings/mapping-MoviesListMaxRecords.json deleted file mode 100644 index 7218edd..0000000 --- a/src/test/resources/mappings/mapping-MoviesListMaxRecords.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?maxRecords=2", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-MoviesMaxRecords.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MoviesListSortedAsc.json b/src/test/resources/mappings/mapping-MoviesListSortedAsc.json deleted file mode 100644 index 892a8f1..0000000 --- a/src/test/resources/mappings/mapping-MoviesListSortedAsc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request": { - "url": "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=asc", - "method": "GET" - }, - "response": { - "status": 200, - "bodyFileName": "/body-MoviesSortedNameAsc.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-MoviesListSortedDesc.json b/src/test/resources/mappings/mapping-MoviesListSortedDesc.json deleted file mode 100644 index fa8bbcb..0000000 --- a/src/test/resources/mappings/mapping-MoviesListSortedDesc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request": { - "url": "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", - "method": "GET" - }, - "response": { - "status": 200, - "bodyFileName": "/body-MoviesSortedNameDesc.json" - } -} diff --git a/src/test/resources/mappings/mapping-ParameterSelectFields.json b/src/test/resources/mappings/mapping-ParameterSelectFields.json deleted file mode 100644 index df8c99e..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectFields.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?fields%5B%5D=Name", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectFields.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ParameterSelectFormula.json b/src/test/resources/mappings/mapping-ParameterSelectFormula.json deleted file mode 100644 index 0bfa97d..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectFormula.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?filterByFormula=NOT%28%7BName%7D+%3D+%27%27%29", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectFormula.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ParameterSelectMaxRecords.json b/src/test/resources/mappings/mapping-ParameterSelectMaxRecords.json deleted file mode 100644 index 9b72d97..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectMaxRecords.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?pageSize=10", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectPageSize.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ParameterSelectPageSize.json b/src/test/resources/mappings/mapping-ParameterSelectPageSize.json deleted file mode 100644 index 7378b93..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectPageSize.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?paheSize=10", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectPageSize.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ParameterSelectSort.json b/src/test/resources/mappings/mapping-ParameterSelectSort.json deleted file mode 100644 index b54a2db..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectSort.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?sort%5B0%5D%5Bfield%5D=Name&sort%5B0%5D%5Bdirection%5D=desc", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectSort.json" - } -} \ No newline at end of file diff --git a/src/test/resources/mappings/mapping-ParameterSelectView.json b/src/test/resources/mappings/mapping-ParameterSelectView.json deleted file mode 100644 index 969144e..0000000 --- a/src/test/resources/mappings/mapping-ParameterSelectView.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "request" : { - "url" : "/v0/appe9941ff07fffcc/Movies?view=Dramas", - "method" : "GET" - }, - "response" : { - "status" : 200, - "bodyFileName" : "/body-ParameterSelectView.json" - } -} \ No newline at end of file From c8addd2c097994f437100c893e32f36097160175 Mon Sep 17 00:00:00 2001 From: fzr Date: Thu, 14 Sep 2017 12:12:44 +0200 Subject: [PATCH 4/6] changed up Tests and implemented new wiremockbasetest --- .../airtable/TableSelectJacksonOMTest.java | 2 +- .../sybit/airtable/mock/WireMockBaseTest.java | 207 ++++++++++++++++-- 2 files changed, 193 insertions(+), 16 deletions(-) diff --git a/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java b/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java index 4c83aa6..9f1275e 100644 --- a/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java +++ b/src/itest/java/com/sybit/airtable/TableSelectJacksonOMTest.java @@ -49,7 +49,7 @@ public String writeValue(final Object value) { } } }); - airtable.setEndpointUrl("http://airtable.mocklab.io"); + airtable.setEndpointUrl("http://localhost:8080"); this.base = airtable.base("appTtHA5PfJnVfjdu"); //set 404 as default diff --git a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java index 4eebaa9..3db75f5 100644 --- a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java +++ b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java @@ -6,6 +6,7 @@ */ package com.sybit.airtable.mock; +import com.github.tomakehurst.wiremock.WireMockServer; import com.github.tomakehurst.wiremock.junit.WireMockRule; import com.sybit.airtable.Airtable; import com.sybit.airtable.exception.AirtableException; @@ -13,8 +14,17 @@ import org.junit.Rule; import static com.github.tomakehurst.wiremock.client.WireMock.*; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; +import com.github.tomakehurst.wiremock.extension.Parameters; +import com.github.tomakehurst.wiremock.recording.SnapshotRecordResult; import com.sybit.airtable.Base; +import java.io.File; +import java.io.IOException; +import org.apache.commons.io.FileUtils; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.BeforeClass; /** * Base Class to test using WireMock. @@ -24,31 +34,198 @@ */ public class WireMockBaseTest { -// @Rule -// public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().port(8080)); + private static class WiremockProp { - protected Airtable airtable = new Airtable(); - protected Base base; + private static boolean recording; + + private static boolean cleanDirectorys; + + private static String targetUrl; + + private static String proxyBase; + + private static int proxyPort; + + private static int serverPort; + + /** + * @return the recording + */ + public static boolean isRecording() { + return recording; + } + + /** + * @param aRecording the recording to set + */ + public static void setRecording(boolean aRecording) { + recording = aRecording; + } + + /** + * @return the cleanDirectorys + */ + public static boolean isCleanDirectorys() { + return cleanDirectorys; + } + + /** + * @param aCleanDirectorys the cleanDirectorys to set + */ + public static void setCleanDirectorys(boolean aCleanDirectorys) { + cleanDirectorys = aCleanDirectorys; + } + + /** + * @return the targetUrl + */ + public static String getTargetUrl() { + return targetUrl; + } + + /** + * @param aTargetUrl the targetUrl to set + */ + public static void setTargetUrl(String aTargetUrl) { + targetUrl = aTargetUrl; + } + + /** + * @return the proxyBase + */ + public static String getProxyBase() { + return proxyBase; + } + + /** + * @param aProxyBase the proxyBase to set + */ + public static void setProxyBase(String aProxyBase) { + proxyBase = aProxyBase; + } + + /** + * @return the proxyPort + */ + public static int getProxyPort() { + return proxyPort; + } + + /** + * @param aProxyPort the proxyPort to set + */ + public static void setProxyPort(int aProxyPort) { + proxyPort = aProxyPort; + } + + /** + * @return the serverPort + */ + public static int getServerPort() { + return serverPort; + } + + /** + * @param aServerPort the serverPort to set + */ + public static void setServerPort(int aServerPort) { + serverPort = aServerPort; + } + }; + + private static WireMockServer wireMockServer; + private static WiremockProp prop; + + protected static Airtable airtable = new Airtable(); + protected static Base base; @Before - public void setup() throws AirtableException { + public void setUp() throws AirtableException { airtable.configure(); - this.base = airtable.base("appTtHA5PfJnVfjdu"); - airtable.setEndpointUrl("http://airtable.mocklab.io"); + airtable.setProxy("127.0.0.1"); + airtable.setEndpointUrl("http://localhost:8080"); + base = airtable.base("appTtHA5PfJnVfjdu"); + + WiremockProp.setRecording(false); + WiremockProp.setCleanDirectorys(false); + WiremockProp.setProxyBase("192.168.1.254"); + WiremockProp.setProxyPort(8080); + WiremockProp.setServerPort(8080); + WiremockProp.setTargetUrl("https://api.airtable.com/v0"); - //set 404 as default -// stubFor(any(anyUrl()) -// .atPriority(10) -// .willReturn(aResponse() -// .withStatus(404) -// .withBody("{\"error\":{\"type\":\"NOT_FOUND\",\"message\":\"Not found\"}}"))); + if (WiremockProp.getProxyBase() != null && WiremockProp.getProxyPort() != 0) { + wireMockServer = new WireMockServer(WireMockConfiguration.wireMockConfig().port(WiremockProp.getServerPort()).proxyVia(WiremockProp.getProxyBase(), WiremockProp.getProxyPort())); + } else { + wireMockServer = new WireMockServer(WireMockConfiguration.wireMockConfig().port(WiremockProp.getServerPort())); + } + //start the Wiremock-Server + startServer(); + + //check if record + if (WiremockProp.isRecording()) { + //check if cleanDirectorys + if (WiremockProp.isCleanDirectorys()) { + cleanExistingRecords(); + startRecording(); + } else { + startRecording(); + } + } + } + + @After + public void tearDown() { + + if (prop.isRecording()) { + stopRecording(); + } + + stopServer(); } + public static void startRecording() { + + wireMockServer.startRecording(recordSpec() + .forTarget(prop.getTargetUrl()) + .captureHeader("Accept") + .captureHeader("Content-Type", true) + .extractBinaryBodiesOver(0) + .extractTextBodiesOver(0) + .makeStubsPersistent(true) + .transformers("modify-response-header") + .transformerParameters(Parameters.one("headerValue", "123")) + .matchRequestBodyWithEqualToJson(false, true)); + } + + public static void stopRecording() { + + SnapshotRecordResult recordedMappings = wireMockServer.stopRecording(); + } + public static void startServer() { - public String endpointUrl() { - return airtable.endpointUrl(); + wireMockServer.start(); } + + public static void stopServer() { + + wireMockServer.stop(); + } + + public static void cleanExistingRecords() { + + File mappings = new File("src/itest/resources/mappings"); + File bodyFiles = new File("src/itest/resources/__files"); + + try { + FileUtils.cleanDirectory(mappings); + FileUtils.cleanDirectory(bodyFiles); + } catch (IOException ex) { + System.out.println("Exception deleting Files: " + ex); + } + } + } + From 1e95379c1a5ad48c3be68b1d6fc44a26bb32ae31 Mon Sep 17 00:00:00 2001 From: fzr Date: Thu, 14 Sep 2017 12:14:15 +0200 Subject: [PATCH 5/6] deleted obsolete Files changed Path to resource --- .../java/com/sybit/airtable/mock/WireMockBaseTest.java | 4 ++-- src/itest/resources/WireMock-Recording.cmd | 6 ------ src/test/resources/WireMock-Recording.cmd | 7 ------- 3 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 src/itest/resources/WireMock-Recording.cmd delete mode 100644 src/test/resources/WireMock-Recording.cmd diff --git a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java index 3db75f5..5a64484 100644 --- a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java +++ b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java @@ -216,8 +216,8 @@ public static void stopServer() { public static void cleanExistingRecords() { - File mappings = new File("src/itest/resources/mappings"); - File bodyFiles = new File("src/itest/resources/__files"); + File mappings = new File("src/test/resources/mappings"); + File bodyFiles = new File("src/test/resources/__files"); try { FileUtils.cleanDirectory(mappings); diff --git a/src/itest/resources/WireMock-Recording.cmd b/src/itest/resources/WireMock-Recording.cmd deleted file mode 100644 index 94cfd70..0000000 --- a/src/itest/resources/WireMock-Recording.cmd +++ /dev/null @@ -1,6 +0,0 @@ -java -Dhttp.proxyHost=192.168.1.254 -Dhttp.proxyPort=8080 ^ - -Dhttps.proxyHost=192.168.1.254 -Dhttps.proxyPort=8080 ^ - -Dhttp.nonProxyHosts="localhost|127.0.0.1" ^ - -jar ../../../bin/wiremock-standalone-2.8.0.jar ^ - --proxy-all="https://api.airtable.com" --port=8080 ^ - --verbose \ No newline at end of file diff --git a/src/test/resources/WireMock-Recording.cmd b/src/test/resources/WireMock-Recording.cmd deleted file mode 100644 index 00c1dc9..0000000 --- a/src/test/resources/WireMock-Recording.cmd +++ /dev/null @@ -1,7 +0,0 @@ -java -Dhttp.proxyHost=192.168.1.254 -Dhttp.proxyPort=8080 ^ - -Dhttps.proxyHost=192.168.1.254 -Dhttps.proxyPort=8080 ^ - -Dhttp.nonProxyHosts="localhost|127.0.0.1" ^ - -jar ../../../bin/wiremock-standalone-2.5.1.jar ^ - --proxy-all="https://api.airtable.com" --port=8080 ^ - --record-mappings --verbose --preserve-host-header ^ - --enable-browser-proxying \ No newline at end of file From c52c62faad1f21a76908f78b08f4ff0225fd38dc Mon Sep 17 00:00:00 2001 From: fzr Date: Thu, 14 Sep 2017 12:48:19 +0200 Subject: [PATCH 6/6] Code Issues from Cadacy --- src/itest/java/com/sybit/airtable/TableParameterTest.java | 2 +- src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java | 5 ----- src/main/java/com/sybit/airtable/Table.java | 1 - 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/itest/java/com/sybit/airtable/TableParameterTest.java b/src/itest/java/com/sybit/airtable/TableParameterTest.java index d6f628e..5739083 100644 --- a/src/itest/java/com/sybit/airtable/TableParameterTest.java +++ b/src/itest/java/com/sybit/airtable/TableParameterTest.java @@ -69,7 +69,7 @@ public String getOffset() { }; List listMovies = movieTable.select(query); - System.out.println(listMovies); + assertEquals(listMovies.size(),9); } diff --git a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java index 5a64484..3f27ef4 100644 --- a/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java +++ b/src/itest/java/com/sybit/airtable/mock/WireMockBaseTest.java @@ -7,15 +7,12 @@ package com.sybit.airtable.mock; import com.github.tomakehurst.wiremock.WireMockServer; -import com.github.tomakehurst.wiremock.junit.WireMockRule; import com.sybit.airtable.Airtable; import com.sybit.airtable.exception.AirtableException; import org.junit.Before; -import org.junit.Rule; import static com.github.tomakehurst.wiremock.client.WireMock.*; import com.github.tomakehurst.wiremock.core.WireMockConfiguration; -import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; import com.github.tomakehurst.wiremock.extension.Parameters; import com.github.tomakehurst.wiremock.recording.SnapshotRecordResult; import com.sybit.airtable.Base; @@ -23,8 +20,6 @@ import java.io.IOException; import org.apache.commons.io.FileUtils; import org.junit.After; -import org.junit.AfterClass; -import org.junit.BeforeClass; /** * Base Class to test using WireMock. diff --git a/src/main/java/com/sybit/airtable/Table.java b/src/main/java/com/sybit/airtable/Table.java index 6fd8cfa..fa187ec 100644 --- a/src/main/java/com/sybit/airtable/Table.java +++ b/src/main/java/com/sybit/airtable/Table.java @@ -24,7 +24,6 @@ import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; -import java.util.Collection; import java.util.List; import java.util.Map;