Converted first PGR test to new CUnit format

Here's the patch that really adds the new test ... plz let me know if I did this incorrectly.
---------------------------------------------------------------
parent 93fd84ab52bc56f889dbd7970345d205ce03f958 (1.7.0-238-g93fd84a)
commit c5aa45226d054389280b763ce5754c5fa647b05c
Author: Lee Duncan <lduncan@suse.de>
Date:   Wed Feb 6 13:43:08 2013 -0800

Converted first PGR test to new CUnit format
This commit is contained in:
Lee Duncan
2013-02-07 11:15:32 -08:00
committed by Ronnie Sahlberg
parent 49d1f87d17
commit 3f4bb80fd4
6 changed files with 122 additions and 2 deletions

View File

@@ -258,7 +258,8 @@ bin_iscsi_test_cu_SOURCES = test-tool/iscsi-test-cu.c \
test-tool/test_writesame16_wrprotect.c \
test-tool/test_writesame16_unmap.c \
test-tool/test_writesame16_unmap_unaligned.c \
test-tool/test_writesame16_unmap_until_end.c
test-tool/test_writesame16_unmap_until_end.c \
test-tool/test_prin_read_keys_simple.c
endif

View File

@@ -183,6 +183,57 @@ iscsi_queue_pdu(struct iscsi_context *iscsi, struct iscsi_pdu *pdu)
return real_iscsi_queue_pdu(iscsi, pdu);
}
int
prin_read_keys(struct iscsi_context *iscsi, int lun, struct scsi_task **tp,
struct scsi_persistent_reserve_in_read_keys **rkp)
{
const int buf_sz = 16384;
struct scsi_persistent_reserve_in_read_keys *rk = NULL;
struct scsi_task *task;
logging(LOG_VERBOSE, "Send PRIN/READ_KEYS");
task = iscsi_persistent_reserve_in_sync(iscsi, lun,
SCSI_PERSISTENT_RESERVE_READ_KEYS, buf_sz);
if (task == NULL) {
logging(LOG_NORMAL,
"[FAILED] Failed to send PRIN command: %s",
iscsi_get_error(iscsi));
return -1;
}
if (tp != NULL)
*tp = task;
if (task->status != SCSI_STATUS_GOOD) {
logging(LOG_NORMAL,
"[FAILED] PRIN command: failed with sense. %s",
iscsi_get_error(iscsi));
if (tp == NULL)
scsi_free_scsi_task(task);
return -1;
}
rk = scsi_datain_unmarshall(task);
if (rk == NULL) {
logging(LOG_NORMAL,
"[FAIL] failed to unmarshall PRIN/READ_KEYS data. %s",
iscsi_get_error(iscsi));
if (tp == NULL)
scsi_free_scsi_task(task);
return -1;
}
if (rkp != NULL)
*rkp = rk;
/* clean up if we are managing our own task */
if (tp == NULL)
scsi_free_scsi_task(task);
return 0;
}
int
register_and_ignore(struct iscsi_context *iscsi, int lun,
unsigned long long sark)

View File

@@ -127,7 +127,6 @@ struct iscsi_pdu;
int (*local_iscsi_queue_pdu)(struct iscsi_context *iscsi, struct iscsi_pdu *pdu);
/*
* PGR support
*/
@@ -159,6 +158,9 @@ static inline int pr_type_is_all_registrants(
}
}
int prin_read_keys(struct iscsi_context *iscsi, int lun, struct scsi_task **tp,
struct scsi_persistent_reserve_in_read_keys **rkp);
int register_and_ignore(struct iscsi_context *iscsi, int lun,
unsigned long long key);
int register_key(struct iscsi_context *iscsi, int lun,

View File

@@ -215,6 +215,11 @@ static CU_TestInfo tests_writesame16[] = {
CU_TEST_INFO_NULL
};
static CU_TestInfo tests_prin_read_keys[] = {
{ (char *)"testPrinReadKeysSimple", test_prin_read_keys_simple },
CU_TEST_INFO_NULL
};
static CU_SuiteInfo suites[] = {
{ (char *)"TestPrefetch10", test_setup, test_teardown,
tests_prefetch10 },
@@ -252,6 +257,8 @@ static CU_SuiteInfo suites[] = {
tests_writesame10 },
{ (char *)"TestWriteSame16", test_setup, test_teardown,
tests_writesame16 },
{ (char *)"TestPrinReadKeys", test_setup, test_teardown,
tests_prin_read_keys },
CU_SUITE_INFO_NULL
};

View File

@@ -138,4 +138,6 @@ void test_writesame16_unmap(void);
void test_writesame16_unmap_unaligned(void);
void test_writesame16_unmap_until_end(void);
void test_prin_read_keys_simple(void);
#endif /* _ISCSI_TEST_CU_H_ */

View File

@@ -0,0 +1,57 @@
/*
Copyright (C) 2013 by Lee Duncan <lee@gonzoleeman.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <arpa/inet.h>
#include <CUnit/CUnit.h>
#include "iscsi.h"
#include "scsi-lowlevel.h"
#include "iscsi-support.h"
#include "iscsi-test-cu.h"
void
test_prin_read_keys_simple(void)
{
int ret = 0;
int al;
logging(LOG_VERBOSE, "");
logging(LOG_VERBOSE, "Test Persistent Reserve IN READ_KEYS works.");
ret = prin_read_keys(iscsic, tgt_lun, &task, NULL);
CU_ASSERT_EQUAL(ret, 0);
logging(LOG_VERBOSE, "Test DATA-IN is at least 8 bytes.");
if (task->datain.size < 8) {
logging(LOG_NORMAL,
"[FAILED] DATA-IN returned less than 8 bytes");
return;
}
logging(LOG_VERBOSE, "Test ADDITIONAL_LENGTH matches DATA_IN size.");
al = ntohl(*(uint32_t *)&task->datain.data[4]);
if (al != task->datain.size - 8) {
logging(LOG_NORMAL,
"[FAILED] ADDITIONAL_LENGTH was %d bytes but %d was expected.",
al, task->datain.size - 8);
return;
}
}