TESTS update reserve6 tests
This commit is contained in:
@@ -45,19 +45,6 @@ test_reserve6_lun_reset(void)
|
|||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Create a second connection to the target");
|
|
||||||
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
|
||||||
if (iscsic2 == NULL) {
|
|
||||||
logging(LOG_VERBOSE, "Failed to login to target");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Try to take out a RESERVE6 from the second initiator");
|
|
||||||
ret = reserve6_conflict(iscsic2, tgt_lun);
|
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Send a LUN Reset");
|
logging(LOG_VERBOSE, "Send a LUN Reset");
|
||||||
ret = iscsi_task_mgmt_lun_reset_sync(iscsic, tgt_lun);
|
ret = iscsi_task_mgmt_lun_reset_sync(iscsic, tgt_lun);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
@@ -69,6 +56,13 @@ test_reserve6_lun_reset(void)
|
|||||||
sleep(3);
|
sleep(3);
|
||||||
|
|
||||||
|
|
||||||
|
logging(LOG_VERBOSE, "Create a second connection to the target");
|
||||||
|
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
||||||
|
if (iscsic2 == NULL) {
|
||||||
|
logging(LOG_VERBOSE, "Failed to login to target");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
||||||
ret = reserve6(iscsic2, tgt_lun);
|
ret = reserve6(iscsic2, tgt_lun);
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|||||||
@@ -45,19 +45,6 @@ test_reserve6_target_cold_reset(void)
|
|||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Create a second connection to the target");
|
|
||||||
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
|
||||||
if (iscsic2 == NULL) {
|
|
||||||
logging(LOG_VERBOSE, "Failed to login to target");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Try to take out a RESERVE6 from the second initiator");
|
|
||||||
ret = reserve6_conflict(iscsic2, tgt_lun);
|
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Send a Cold Reset to the target");
|
logging(LOG_VERBOSE, "Send a Cold Reset to the target");
|
||||||
ret = iscsi_task_mgmt_target_cold_reset_sync(iscsic);
|
ret = iscsi_task_mgmt_target_cold_reset_sync(iscsic);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
@@ -68,6 +55,13 @@ test_reserve6_target_cold_reset(void)
|
|||||||
logging(LOG_VERBOSE, "Sleep for three seconds incase the target is slow to reset");
|
logging(LOG_VERBOSE, "Sleep for three seconds incase the target is slow to reset");
|
||||||
sleep(3);
|
sleep(3);
|
||||||
|
|
||||||
|
logging(LOG_VERBOSE, "Create a second connection to the target");
|
||||||
|
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
||||||
|
if (iscsic2 == NULL) {
|
||||||
|
logging(LOG_VERBOSE, "Failed to login to target");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
||||||
ret = reserve6(iscsic2, tgt_lun);
|
ret = reserve6(iscsic2, tgt_lun);
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|||||||
@@ -45,19 +45,6 @@ test_reserve6_target_warm_reset(void)
|
|||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Create a second connection to the target");
|
|
||||||
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
|
||||||
if (iscsic2 == NULL) {
|
|
||||||
logging(LOG_VERBOSE, "Failed to login to target");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Try to take out a RESERVE6 from the second initiator");
|
|
||||||
ret = reserve6_conflict(iscsic2, tgt_lun);
|
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "Send a Warm Reset to the target");
|
logging(LOG_VERBOSE, "Send a Warm Reset to the target");
|
||||||
ret = iscsi_task_mgmt_target_warm_reset_sync(iscsic);
|
ret = iscsi_task_mgmt_target_warm_reset_sync(iscsic);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
@@ -69,6 +56,14 @@ test_reserve6_target_warm_reset(void)
|
|||||||
sleep(3);
|
sleep(3);
|
||||||
|
|
||||||
|
|
||||||
|
logging(LOG_VERBOSE, "Create a second connection to the target");
|
||||||
|
iscsic2 = iscsi_context_login(initiatorname1, tgt_url, &tgt_lun);
|
||||||
|
if (iscsic2 == NULL) {
|
||||||
|
logging(LOG_VERBOSE, "Failed to login to target");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
logging(LOG_VERBOSE, "RESERVE6 from the second initiator should work now");
|
||||||
ret = reserve6(iscsic2, tgt_lun);
|
ret = reserve6(iscsic2, tgt_lun);
|
||||||
CU_ASSERT_EQUAL(ret, 0);
|
CU_ASSERT_EQUAL(ret, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user