/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * The contents of this file are subject to the Netscape Public * License Version 1.1 (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.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ #include "nsIServiceManager.h" #include "nsICookieService.h" #include "stdio.h" #include "nsNetUtil.h" #include "nsXPIDLString.h" #include "nsIEventQueueService.h" #include "nsIStringBundle.h" #include "nslog.h" NS_IMPL_LOG(TestCookieLog) #define PRINTF NS_LOG_PRINTF(TestCookieLog) #define FLUSH NS_LOG_FLUSH(TestCookieLog) static nsIEventQueue* gEventQ = nsnull; static NS_DEFINE_CID(kCookieServiceCID, NS_COOKIESERVICE_CID); static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID); void SetACookie(nsICookieService *cookieService, const char* aSpec, const char* aCookieString) { nsCOMPtr uri; (void)NS_NewURI(getter_AddRefs(uri), aSpec); NS_ASSERTION(uri, "malformed uri"); nsString cookie; cookie.AssignWithConversion(aCookieString); PRINTF("setting cookie for \"%s\" : ", aSpec); nsresult rv = cookieService->SetCookieString(uri, nsnull, cookie); if (NS_FAILED(rv)) { PRINTF("NOT-SET\n"); } else { PRINTF("\"%s\" was set.\n", aCookieString); } return; } void GetACookie(nsICookieService *cookieService, const char* aSpec, char* *aCookie) { nsCOMPtr uri; (void)NS_NewURI(getter_AddRefs(uri), aSpec); NS_ASSERTION(uri, "malformed uri"); nsString cookie; PRINTF("retrieving cookie(s) for \"%s\" : ", aSpec); nsresult rv = cookieService->GetCookieString(uri, cookie); if (NS_FAILED(rv)) PRINTF("XXX GetCookieString() failed!\n"); if (cookie.IsEmpty()) { PRINTF("NOT-FOUND\n"); } else { PRINTF("FOUND: "); char *cookieString = cookie.ToNewCString(); PRINTF("%s\n", cookieString); nsCRT::free(cookieString); } return; } int main(PRInt32 argc, char *argv[]) { nsresult rv = NS_InitXPCOM(nsnull, nsnull); if (NS_FAILED(rv)) return -1; // Create the Event Queue for this thread... NS_WITH_SERVICE(nsIEventQueueService, eventQService, kEventQueueServiceCID, &rv); if (NS_FAILED(rv)) return -1; rv = eventQService->CreateThreadEventQueue(); if (NS_FAILED(rv)) return -1; eventQService->GetThreadEventQueue(NS_CURRENT_THREAD, &gEventQ); NS_WITH_SERVICE(nsIStringBundleService, bundleService, NS_STRINGBUNDLE_CONTRACTID, &rv); if (NS_SUCCEEDED(rv)) { nsCOMPtr stringBundle; char* propertyURL = "chrome://necko/locale/necko.properties"; nsILocale *locale = nsnull; rv = bundleService->CreateBundle(propertyURL, locale, getter_AddRefs(stringBundle)); } NS_WITH_SERVICE(nsICookieService, cookieService, kCookieServiceCID, &rv); if (NS_FAILED(rv)) return -1; SetACookie(cookieService, "http://www.blah.com", "myCookie=yup; path=/"); nsXPIDLCString cookie; GetACookie(cookieService, "http://www.blah.com", getter_Copies(cookie)); GetACookie(cookieService, "http://www.blah.com/testPath/testfile.txt", getter_Copies(cookie)); SetACookie(cookieService, "http://blah/path/file", "aaa=bbb; path=/path"); GetACookie(cookieService, "http://blah/path", getter_Copies(cookie)); GetACookie(cookieService, "http://blah/2path2", getter_Copies(cookie)); SetACookie(cookieService, "http://www.netscape.com/", "cookie=true; domain=bull.com;"); GetACookie(cookieService, "http://www.bull.com/", getter_Copies(cookie)); SetACookie(cookieService, "http://www.netscape.com/", "cookie=true; domain=netscape.com;"); GetACookie(cookieService, "http://www.netscape.com/", getter_Copies(cookie)); SetACookie(cookieService, "http://www.netscape.com/", "cookie=true; domain=.netscape.com;"); GetACookie(cookieService, "http://bla.netscape.com/", getter_Copies(cookie)); NS_ShutdownXPCOM(nsnull); return 0; }