2013-12-29 04:53:12 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
2012-09-06 23:51:56 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-09-06 23:51:56 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2013-12-29 04:53:12 +00:00
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2012-09-06 23:51:56 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "util_suite.h"
|
2012-09-06 23:51:56 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <CUnit/Basic.h>
|
2013-06-05 19:12:32 +00:00
|
|
|
#include <guacamole/pool.h>
|
2012-09-06 23:51:56 +00:00
|
|
|
|
|
|
|
#define UNSEEN 0
|
|
|
|
#define SEEN_PHASE_1 1
|
|
|
|
#define SEEN_PHASE_2 2
|
|
|
|
|
|
|
|
#define POOL_SIZE 128
|
|
|
|
|
|
|
|
void test_guac_pool() {
|
|
|
|
|
|
|
|
guac_pool* pool;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
int seen[POOL_SIZE] = {0};
|
|
|
|
int value;
|
|
|
|
|
|
|
|
/* Get pool */
|
|
|
|
pool = guac_pool_alloc(POOL_SIZE);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(pool);
|
|
|
|
|
|
|
|
/* Fill pool */
|
|
|
|
for (i=0; i<POOL_SIZE; i++) {
|
|
|
|
|
|
|
|
/* Get value from pool */
|
|
|
|
value = guac_pool_next_int(pool);
|
|
|
|
|
|
|
|
/* Value should be within pool size */
|
2012-09-07 00:54:58 +00:00
|
|
|
CU_ASSERT_FATAL(value >= 0);
|
|
|
|
CU_ASSERT_FATAL(value < POOL_SIZE);
|
2012-09-06 23:51:56 +00:00
|
|
|
|
|
|
|
/* This should be an integer we have not seen yet */
|
|
|
|
CU_ASSERT_EQUAL(UNSEEN, seen[value]);
|
|
|
|
seen[value] = SEEN_PHASE_1;
|
|
|
|
|
|
|
|
/* Return value to pool */
|
|
|
|
guac_pool_free_int(pool, value);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now that pool is filled, we should get ONLY previously seen integers */
|
|
|
|
for (i=0; i<POOL_SIZE; i++) {
|
|
|
|
|
|
|
|
/* Get value from pool */
|
|
|
|
value = guac_pool_next_int(pool);
|
|
|
|
|
|
|
|
/* Value should be within pool size */
|
2012-09-07 00:54:58 +00:00
|
|
|
CU_ASSERT_FATAL(value >= 0);
|
|
|
|
CU_ASSERT_FATAL(value < POOL_SIZE);
|
2012-09-06 23:51:56 +00:00
|
|
|
|
|
|
|
/* This should be an integer we have seen already */
|
|
|
|
CU_ASSERT_EQUAL(SEEN_PHASE_1, seen[value]);
|
|
|
|
seen[value] = SEEN_PHASE_2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-06 23:52:39 +00:00
|
|
|
/* Pool is filled to minimum now. Next value should be equal to size. */
|
2012-09-06 23:51:56 +00:00
|
|
|
value = guac_pool_next_int(pool);
|
|
|
|
|
2012-09-06 23:52:39 +00:00
|
|
|
CU_ASSERT_EQUAL(POOL_SIZE, value);
|
2012-09-06 23:51:56 +00:00
|
|
|
|
|
|
|
/* Free pool */
|
|
|
|
guac_pool_free(pool);
|
|
|
|
|
|
|
|
}
|
|
|
|
|