ofdbus/dbus/tsrc/testapps/exes1/src/dbus_connection_get_is_authenticated0.c
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:48:56 +0100
branchGCC_SURGE
changeset 45 4b03adbd26ca
parent 0 e4d67989cc36
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/


#include<stdio.h> 
#include <dbus/dbus.h>
#include <stdlib.h>
#include <string.h>

#define LOG_FILE "c:\\logs\\dbus_connection_get_is_authenticated0_log1.txt"
#include "std_log_result.h"
#define LOG_FILENAME_LINE __FILE__, __LINE__

void create_xml(int result)
{
	if(result)
		assert_failed = 1;
	
	testResultXml("dbus_connection_get_is_authenticated0");
	close_log_file();
}

int CheckConnection(DBusConnection* conn, DBusError* error)
{
	if(!conn)
	{
		std_log(LOG_FILENAME_LINE, "Failed to get connection with error :: %s\n%s", error->name, error->message);
	
		dbus_error_free(error);
		return FALSE;
	}
	
	return TRUE;
}

int main()
{
   	DBusError error;
	DBusConnection* connection; 
	
	dbus_error_init(&error);
	
	connection = dbus_bus_get_private(DBUS_BUS_SESSION, &error);
	if(!CheckConnection(connection, &error))
	{	
		create_xml(1);
		return 1;
	}
	
	if(!dbus_connection_get_is_authenticated(connection))
	{
		dbus_connection_close(connection);
		dbus_connection_unref(connection);
		dbus_shutdown();
		std_log(LOG_FILENAME_LINE, "Authentication is not done");
		create_xml(1);
		return 1;
	}
	dbus_connection_close(connection);
	dbus_connection_unref(connection);
	dbus_shutdown();
	std_log(LOG_FILENAME_LINE, "Test Successful");
	create_xml(0);
	return 0;
}