keys.add(key1);
Product prod1 = TestUtil.createProduct();
Pool ghost = TestUtil.createPool(owner, prod1, 5);
ghost.setId("ghost-pool");
key1.addPool(ghost, 10L);
Consumer consumer = new Consumer("sys.example.com", null, null, system);
when(entitler.bindByPool(eq(ghost.getId()), eq(consumer), eq(10)))
.thenThrow(new ForbiddenException("fail"));
consumerBindUtil.handleActivationKeys(consumer, keys);