#define SQUID_UNIT_TEST 1

#include "squid-old.h"

#if USE_AUTH

#include "testACLMaxUserIP.h"
#include "auth/AclMaxUserIp.h"

#if HAVE_STDEXCEPT
#include <stdexcept>
#endif

CPPUNIT_TEST_SUITE_REGISTRATION( testACLMaxUserIP );


void
testACLMaxUserIP::testDefaults()
{
    ACLMaxUserIP anACL("max_user_ip");
    /* 0 is not a valid maximum, so we start at 0 */
    CPPUNIT_ASSERT(anACL.getMaximum() == 0);
    /* and we have no option to turn strict OFF, so start ON. */
    CPPUNIT_ASSERT(anACL.getStrict() == false);
    /* an unparsed acl must not be valid - there is no sane default */
    CPPUNIT_ASSERT(!anACL.valid());
}


void
testACLMaxUserIP::testParseLine()
{
    /* a config line to pass with a lead-in token to seed the parser. */
    char * line = xstrdup("token -s 1");
    /* seed the parser */
    strtok(line, w_space);
    ACLMaxUserIP anACL("max_user_ip");
    anACL.parse();
    /* we want a maximum of one, and strict to be true */
    CPPUNIT_ASSERT(anACL.getMaximum() == 1);
    CPPUNIT_ASSERT(anACL.getStrict() == true);
    /* the acl must be vaid */
    CPPUNIT_ASSERT(anACL.valid());
    xfree(line);
}

#endif /* USE_AUTH */