package org.ovirt.engine.api.restapi.resource; import java.util.ArrayList; import javax.ws.rs.WebApplicationException; import org.junit.Test; import org.ovirt.engine.api.model.Network; import org.ovirt.engine.core.common.action.VdcActionType; import org.ovirt.engine.core.common.action.AddNetworkStoragePoolParameters; import org.ovirt.engine.core.common.businessentities.network; import org.ovirt.engine.core.common.queries.GetAllNetworkQueryParamenters; import org.ovirt.engine.core.common.queries.VdcQueryType; import org.ovirt.engine.core.compat.Guid; import static org.ovirt.engine.api.restapi.resource.AbstractBackendNetworksResourceTest.getModel; public class BackendNetworkResourceTest extends AbstractBackendNetworkResourceTest<BackendNetworkResource> { public BackendNetworkResourceTest() { super(new BackendNetworkResource(GUIDS[0].toString(), new BackendNetworksResource())); } @Test public void testBadGuid() throws Exception { control.replay(); try { new BackendNetworkResource("foo", null); fail("expected WebApplicationException"); } catch (WebApplicationException wae) { verifyNotFoundException(wae); } } @Test public void testGetNotFound() throws Exception { setUriInfo(setUpBasicUriExpectations()); setUpEntityQueryExpectations(VdcQueryType.GetAllNetworks, GetAllNetworkQueryParamenters.class, new String[] { "StoragePoolId" }, new Object[] { Guid.Empty }, new ArrayList<network>()); control.replay(); try { resource.get(); fail("expected WebApplicationException"); } catch (WebApplicationException wae) { verifyNotFoundException(wae); } } @Test public void testGet() throws Exception { setUriInfo(setUpBasicUriExpectations()); setUpEntityQueryExpectations(1); control.replay(); verifyModel(resource.get(), 0); } @Test public void testUpdateNotFound() throws Exception { setUriInfo(setUpBasicUriExpectations()); setUpEntityQueryExpectations(VdcQueryType.GetAllNetworks, GetAllNetworkQueryParamenters.class, new String[] { "StoragePoolId" }, new Object[] { Guid.Empty }, new ArrayList<network>()); control.replay(); try { resource.update(getModel(0)); fail("expected WebApplicationException"); } catch (WebApplicationException wae) { verifyNotFoundException(wae); } } @Test public void testUpdate() throws Exception { setUpEntityQueryExpectations(2); setUriInfo(setUpActionExpectations(VdcActionType.UpdateNetwork, AddNetworkStoragePoolParameters.class, new String[] { "StoragePoolId" }, new Object[] { GUIDS[1] }, true, true)); verifyModel(resource.update(getModel(0)), 0); } @Test public void testUpdateCantDo() throws Exception { doTestBadUpdate(false, true, CANT_DO); } @Test public void testUpdateFailed() throws Exception { doTestBadUpdate(true, false, FAILURE); } private void doTestBadUpdate(boolean canDo, boolean success, String detail) throws Exception { setUpEntityQueryExpectations(1); setUriInfo(setUpActionExpectations(VdcActionType.UpdateNetwork, AddNetworkStoragePoolParameters.class, new String[] { "StoragePoolId" }, new Object[] { GUIDS[1] }, canDo, success)); try { resource.update(getModel(0)); fail("expected WebApplicationException"); } catch (WebApplicationException wae) { verifyFault(wae, detail); } } @Test public void testConflictedUpdate() throws Exception { setUriInfo(setUpBasicUriExpectations()); setUpEntityQueryExpectations(1); control.replay(); Network model = getModel(1); model.setId(GUIDS[1].toString()); try { resource.update(model); fail("expected WebApplicationException"); } catch (WebApplicationException wae) { verifyImmutabilityConstraint(wae); } } protected void setUpEntityQueryExpectations(int times) throws Exception { while (times-- > 0) { setUpEntityQueryExpectations(VdcQueryType.GetAllNetworks, GetAllNetworkQueryParamenters.class, new String[] { "StoragePoolId" }, new Object[] { Guid.Empty }, getEntityList()); } } }