blob: d282c092c629b9b4b6bf8201f7117fa9264ec3cd [file] [log] [blame]
/*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
#include <gtest/gtest.h>
#include <axiom.h>
#include <axutil_utils.h>
#include <axutil_env.h>
#include <axutil_log_default.h>
#include <axutil_error_default.h>
#include <stdio.h>
#include <axiom_xml_reader.h>
#include <neethi_engine.h>
#include <axutil_array_list.h>
axis2_status_t AXIS2_CALL om_node_serialize(
axiom_node_t * node,
const axutil_env_t * env);
class TestNeethi: public ::testing::Test
{
protected:
void SetUp()
{
m_allocator = axutil_allocator_init(NULL);
m_axis_log = axutil_log_create(m_allocator, NULL, NULL);
m_error = axutil_error_create(m_allocator);
m_env = axutil_env_create_with_error_log(m_allocator, m_error, m_axis_log);
}
void TearDown()
{
axutil_env_free(m_env);
}
axutil_allocator_t *m_allocator = NULL;
axutil_env_t *m_env = NULL;
axutil_error_t *m_error = NULL;
axutil_log_t *m_axis_log = NULL;
};
TEST_F(TestNeethi, test_get_policy)
{
axiom_xml_reader_t *reader = NULL;
axiom_stax_builder_t *builder = NULL;
axiom_document_t *document = NULL;
axiom_node_t *root = NULL;
axiom_element_t *root_ele = NULL;
char *filename = "policies/symmetric_binding_policy.xml";
reader = axiom_xml_reader_create_for_file(m_env, filename, NULL);
ASSERT_NE(reader, nullptr);
builder = axiom_stax_builder_create(m_env, reader);
ASSERT_NE(builder, nullptr);
document = axiom_stax_builder_get_document(builder, m_env);
ASSERT_NE(document, nullptr);
root = axiom_document_get_root_element(document, m_env);
/*root = axiom_document_build_all(document, m_env); */
ASSERT_NE(root, nullptr);
if (root)
{
if (axiom_node_get_node_type(root, m_env) == AXIOM_ELEMENT)
{
root_ele =
(axiom_element_t *) axiom_node_get_data_element(root, m_env);
if (root_ele)
{
neethi_policy_t *neethi_policy = NULL;
neethi_policy = neethi_engine_get_policy(m_env, root, root_ele);
ASSERT_NE(neethi_policy, nullptr);
if(neethi_policy)
{
axis2_char_t *id = NULL;
axis2_char_t *name = NULL;
id = neethi_policy_get_id(neethi_policy, m_env);
if(id)
{
printf("Id is : %s\n", id);
}
name = neethi_policy_get_name(neethi_policy, m_env);
if(name)
{
printf("Name is : %s\n", name);
}
neethi_policy_free(neethi_policy, m_env);
neethi_policy = NULL;
printf("Successful \n");
}
/*else
{
axiom_node_t *s_node = NULL;
s_node = neethi_engine_serialize(neethi_policy, env);
if (!s_node)
{
printf("Serializing failed\n");
return 0;
}
if (om_node_serialize(s_node, env) != AXIS2_SUCCESS)
return 0;
}*/
}
}
}
if(builder)
{
axiom_stax_builder_free(builder, m_env);
builder = NULL;
}
}
axis2_status_t AXIS2_CALL
om_node_serialize(
axiom_node_t * node,
const axutil_env_t * env)
{
axiom_output_t *om_output = NULL;
axiom_xml_writer_t *writer = NULL;
axis2_char_t *output_buffer = NULL;
axis2_status_t status = AXIS2_FAILURE;
writer = axiom_xml_writer_create_for_memory(env, NULL, AXIS2_TRUE, 0,
AXIS2_XML_PARSER_TYPE_BUFFER);
om_output = axiom_output_create(env, writer);
status = axiom_node_serialize(node, env, om_output);
if (status != AXIS2_SUCCESS)
{
printf("\naxiom_node_serialize failed\n");
return 0;
}
else
printf("\naxiom_node_serialize success\n");
/* end serializing stuff */
/*axiom_node_free_tree(node1, environment); */
output_buffer = (axis2_char_t *) axiom_xml_writer_get_xml(writer, env);
printf("\nend test_om_serialize\n");
return AXIS2_SUCCESS;
}
axutil_array_list_t *AXIS2_CALL
load_policy_array(
int argc,
char **argv,
const axutil_env_t * env)
{
axiom_xml_reader_t *reader = NULL;
axiom_stax_builder_t *builder = NULL;
axiom_document_t *document = NULL;
axiom_node_t *root = NULL;
axiom_element_t *root_ele = NULL;
int i = 0;
axutil_array_list_t *arraylist = NULL;
arraylist = axutil_array_list_create(env, 0);
for (i = 1; i < argc; i++)
{
reader = axiom_xml_reader_create_for_file(env, argv[i], NULL);
if (!reader)
{
AXIS2_ERROR_SET(env->error, AXIS2_ERROR_CREATING_XML_STREAM_READER,
AXIS2_FAILURE);
printf("xml reader creation failed\n");
return NULL;
}
builder = axiom_stax_builder_create(env, reader);
if (!builder)
{
axiom_xml_reader_free(reader, env);
printf("Builder creation failed\n");
return NULL;
}
document = axiom_stax_builder_get_document(builder, env);
if (!document)
{
axiom_stax_builder_free(builder, env);
printf("Document creation failed\n");
return NULL;
}
/*root = axiom_document_get_root_element(document, env); */
root = axiom_document_build_all(document, env);
if (!root)
{
axiom_stax_builder_free(builder, env);
return NULL;
}
if (root)
{
if (axiom_node_get_node_type(root, env) == AXIOM_ELEMENT)
{
root_ele =
(axiom_element_t *) axiom_node_get_data_element(root, env);
if (root_ele)
{
neethi_policy_t *neethi_policy = NULL;
neethi_policy =
neethi_engine_get_policy(env, root, root_ele);
if (!neethi_policy)
{
printf("Policy Creation fails\n");
return NULL;
}
axutil_array_list_add(arraylist, env, neethi_policy);
}
}
}
}
return arraylist;
}