diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-01-17 11:43:47 +0000 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-01-17 11:43:47 +0000 |
commit | 5621e24fe7336f978666e1a5bdae0adf75f4d144 (patch) | |
tree | 2aabd2866cb1aeccdc217669e9d65a7ae57165f0 /mso-catalog-db/src/test | |
parent | ab3dd55d09241672cdfaf34652b01a593d630fc2 (diff) |
Improve UT for catalog db
Impove UT for catalog db.
Change-Id: Iacbcb9de5ec92f929bfce8cfaac298e4a9ccf8b9
Issue-ID: SO-360
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'mso-catalog-db/src/test')
-rw-r--r-- | mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/test/CatalogDatabaseTest.java | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/test/CatalogDatabaseTest.java b/mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/test/CatalogDatabaseTest.java index 2266392d9a..445ca12892 100644 --- a/mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/test/CatalogDatabaseTest.java +++ b/mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/test/CatalogDatabaseTest.java @@ -967,9 +967,58 @@ public class CatalogDatabaseTest { assertEquals(null, serviceRecipe); } - @Test(expected = Exception.class) + @Test public void getServiceRecipesTestException() throws Exception{ - List<ServiceRecipe> ht = cd.getServiceRecipes("123"); + MockUp<Query> mockUpQuery = new MockUp<Query>() { + @Mock + public List<ServiceRecipe> list() { + ServiceRecipe serviceRecipe = new ServiceRecipe(); + serviceRecipe.setId(1); + return Arrays.asList(serviceRecipe); + } + }; + + MockUp<Session> mockedSession = new MockUp<Session>() { + @Mock + public Query createQuery(String hql) { + return mockUpQuery.getMockInstance(); + } + }; + + new MockUp<CatalogDatabase>() { + @Mock + private Session getSession() { + return mockedSession.getMockInstance(); + } + }; + List<ServiceRecipe> serviceRecipes = cd.getServiceRecipes("123"); + assertEquals(1, serviceRecipes.size()); + } + + @Test + public void getServiceRecipesEmptyTest() throws Exception{ + MockUp<Query> mockUpQuery = new MockUp<Query>() { + @Mock + public List<ServiceRecipe> list() { + return Arrays.asList(); + } + }; + + MockUp<Session> mockedSession = new MockUp<Session>() { + @Mock + public Query createQuery(String hql) { + return mockUpQuery.getMockInstance(); + } + }; + + new MockUp<CatalogDatabase>() { + @Mock + private Session getSession() { + return mockedSession.getMockInstance(); + } + }; + List<ServiceRecipe> serviceRecipes = cd.getServiceRecipes("123"); + assertEquals(0, serviceRecipes.size()); } @Test(expected = Exception.class) |