blob: 236dc3747eb9f620b4da54c3384c4a14a63436f2 [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001/* (C) 2008 by Jan Luebbe <jluebbe@debian.org>
2 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 */
19
20#include <openbsc/db.h>
21#include <openbsc/gsm_subscriber.h>
22
23#include <stdio.h>
24#include <string.h>
25#include <stdlib.h>
26
27#define COMPARE(original, copy) \
28 if (original->id != copy->id) \
29 fprintf(stderr, "Ids do not match in %s:%d %llu %llu\n", \
30 __FUNCTION__, __LINE__, original->id, copy->id); \
31 if (original->lac != copy->lac) \
32 fprintf(stderr, "LAC do not match in %s:%d %d %d\n", \
33 __FUNCTION__, __LINE__, original->lac, copy->lac); \
34 if (original->authorized != copy->authorized) \
35 fprintf(stderr, "Authorize do not match in %s:%d %d %d\n", \
36 __FUNCTION__, __LINE__, original->authorized, \
37 copy->authorized); \
38 if (strcmp(original->imsi, copy->imsi) != 0) \
39 fprintf(stderr, "IMSIs do not match in %s:%d '%s' '%s'\n", \
40 __FUNCTION__, __LINE__, original->imsi, copy->imsi); \
41 if (original->tmsi != copy->tmsi) \
42 fprintf(stderr, "TMSIs do not match in %s:%d '%u' '%u'\n", \
43 __FUNCTION__, __LINE__, original->tmsi, copy->tmsi); \
44 if (strcmp(original->name, copy->name) != 0) \
45 fprintf(stderr, "names do not match in %s:%d '%s' '%s'\n", \
46 __FUNCTION__, __LINE__, original->name, copy->name); \
47 if (strcmp(original->extension, copy->extension) != 0) \
48 fprintf(stderr, "names do not match in %s:%d '%s' '%s'\n", \
49 __FUNCTION__, __LINE__, original->extension, copy->extension); \
50
51int main() {
52
53 if (db_init("hlr.sqlite3")) {
54 printf("DB: Failed to init database. Please check the option settings.\n");
55 return 1;
56 }
57 printf("DB: Database initialized.\n");
58
59 if (db_prepare()) {
60 printf("DB: Failed to prepare database.\n");
61 return 1;
62 }
63 printf("DB: Database prepared.\n");
64
65 struct gsm_subscriber *alice = NULL;
66 struct gsm_subscriber *alice_db;
67
68 char *alice_imsi = "3243245432345";
69 alice = db_create_subscriber(NULL, alice_imsi);
70 db_sync_subscriber(alice);
71 alice_db = db_get_subscriber(NULL, GSM_SUBSCRIBER_IMSI, alice->imsi);
72 COMPARE(alice, alice_db);
73 subscr_put(alice_db);
74 subscr_put(alice);
75
76 alice_imsi = "3693245423445";
77 alice = db_create_subscriber(NULL, alice_imsi);
78 db_subscriber_assoc_imei(alice, "1234567890");
79 db_subscriber_alloc_tmsi(alice);
80 alice->lac=42;
81 db_sync_subscriber(alice);
82 alice_db = db_get_subscriber(NULL, GSM_SUBSCRIBER_IMSI, alice_imsi);
83 COMPARE(alice, alice_db);
84 subscr_put(alice);
85 subscr_put(alice_db);
86
87 alice_imsi = "9993245423445";
88 alice = db_create_subscriber(NULL, alice_imsi);
89 db_subscriber_alloc_tmsi(alice);
90 alice->lac=42;
91 db_sync_subscriber(alice);
92 db_subscriber_assoc_imei(alice, "1234567890");
93 db_subscriber_assoc_imei(alice, "6543560920");
94 alice_db = db_get_subscriber(NULL, GSM_SUBSCRIBER_IMSI, alice_imsi);
95 COMPARE(alice, alice_db);
96 subscr_put(alice);
97 subscr_put(alice_db);
98
99 db_fini();
100
101 return 0;
102}
103
104/* stubs */
105void vty_out() {}