Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / test / NameCacheTest.cpp
1 /*
2  * Copyright (c) 2014, 2015 JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <string>
36 #include <iostream>
37
38 #include "NameCacheTest.h"
39 #include "cache/GSSNameCache.h"
40 #include "datamodel/GSSName.h"
41 #include <GSSImportName.h>
42
43 CPPUNIT_TEST_SUITE_REGISTRATION( NameCacheTest );
44
45 void NameCacheTest::setUp()
46 {
47
48 }
49
50 void NameCacheTest::tearDown()
51 {
52
53 }
54
55 void NameCacheTest::testStore()
56 {
57   /* Variables      */
58   gss_name_t src;
59   std::string  key;
60   GSSName      source, target;
61   OM_uint32 major, minor;
62   
63   /* Error checking */
64   /* Setup          */
65   major = gss_import_name(&minor, GSSBuffer((char *)"HTTP@localhost").toGss(), GSS_C_NT_HOSTBASED_SERVICE, &src);
66   if (GSS_ERROR(major))
67   {
68     OM_uint32 min, context;
69     gss_buffer_desc buf;
70     
71     std::cout << "Error in importing name." << std::endl;
72     gss_display_status(&min, major, GSS_C_GSS_CODE, GSS_C_NT_HOSTBASED_SERVICE, &context, &buf);
73     std::cout << "  message: " << (char *)buf.value << std::endl;
74   }
75   CPPUNIT_ASSERT_MESSAGE(
76     "Could not generate a name to test storing into the cache.",
77     !GSS_ERROR(major)
78   );
79   source.setValue(src);
80   
81   /* Main           */
82   
83   // Store the data
84   key = GSSNameCache::instance()->store(source);
85   
86   // verify that the data can be retrieved.
87   target = GSSNameCache::instance()->retrieve(key);
88   
89   CPPUNIT_ASSERT_EQUAL_MESSAGE(
90     "The name cache did not store and retrieve the same data",
91     source.toString(),
92     target.toString()
93   );
94
95   /* Cleanup        */
96   /* Return         */
97   
98 }
99
100
101
102   /* Variables      */
103   /* Error checking */
104   /* Setup          */
105   /* Main           */
106   /* Cleanup        */
107   /* Return         */