diff --git a/e2e-test/java/org/alfresco/rest/renditions/AvailableRenditionTests.java b/e2e-test/java/org/alfresco/rest/renditions/AvailableRenditionTests.java
new file mode 100644
index 000000000..ba6cb59af
--- /dev/null
+++ b/e2e-test/java/org/alfresco/rest/renditions/AvailableRenditionTests.java
@@ -0,0 +1,114 @@
+package org.alfresco.rest.renditions;
+
+import org.alfresco.rest.model.RestNodeModel;
+import org.alfresco.rest.model.RestRenditionInfoModel;
+import org.alfresco.rest.model.RestRenditionInfoModelCollection;
+import org.alfresco.utility.model.FileModel;
+import org.alfresco.utility.model.TestGroup;
+import org.alfresco.utility.testrail.ExecutionType;
+import org.alfresco.utility.testrail.annotation.TestRail;
+import org.springframework.http.HttpStatus;
+import org.testng.Assert;
+import org.testng.annotations.DataProvider;
+import org.testng.annotations.Test;
+
+import java.util.Arrays;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+
+/**
+ *
+ * Sanity check for renditions through REST API.
+ * Tests upload files and then request renditions for those files.
+ * Renditions are requested based on supported renditions according to GET '/nodes/{nodeId}/renditions'.
+ */
+@Test(groups = {TestGroup.REQUIRE_TRANSFORMATION, TestGroup.RENDITIONS_REGRESSION})
+public class AvailableRenditionTests extends RenditionIntegrationTests
+{
+
+ /**
+ * Check that a particular rendition can be created for the file and that it has the expected Mime type
+ */
+ @Test(dataProvider = "RenditionTestDataProvider", groups = {TestGroup.REST_API, TestGroup.RENDITIONS, TestGroup.SANITY})
+ @TestRail(section = { TestGroup.REST_API, TestGroup.RENDITIONS }, executionType = ExecutionType.SANITY,
+ description = "Verify renditions created for a selection of test files via POST nodes/{nodeId}/renditions")
+ public void supportedRenditionTest(String fileName, String renditionId, String expectedMimeType, String nodeId) throws Exception
+ {
+ checkRendition(fileName, nodeId, renditionId, expectedMimeType);
+ }
+
+ @DataProvider(name = "RenditionTestDataProvider")
+ protected Iterator