[JAEGER] Merge from tracemonkey.
[mozilla-central.git] / toolkit / components / places / tests / cpp / places_test_harness.h
blobcb61aff8ceacac8220f09625eb544712ceac3f6d
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is places test code.
18 * The Initial Developer of the Original Code is
19 * Mozilla Foundation.
20 * Portions created by the Initial Developer are Copyright (C) 2009
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Shawn Wilsher <me@shawnwilsher.com> (Original Author)
26 * Alternatively, the contents of this file may be used under the terms of
27 * either the GNU General Public License Version 2 or later (the "GPL"), or
28 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
40 #include "TestHarness.h"
41 #include "nsMemory.h"
42 #include "nsThreadUtils.h"
43 #include "nsNetUtil.h"
44 #include "nsDocShellCID.h"
46 #include "nsToolkitCompsCID.h"
47 #include "nsINavHistoryService.h"
48 #include "nsIObserverService.h"
49 #include "mozilla/IHistory.h"
51 using namespace mozilla;
53 static size_t gTotalTests = 0;
54 static size_t gPassedTests = 0;
56 #define do_check_true(aCondition) \
57 PR_BEGIN_MACRO \
58 gTotalTests++; \
59 if (aCondition) { \
60 gPassedTests++; \
61 } else { \
62 fail("Expected true, got false at %s:%d!", __FILE__, __LINE__); \
63 } \
64 PR_END_MACRO
66 #define do_check_false(aCondition) \
67 PR_BEGIN_MACRO \
68 gTotalTests++; \
69 if (!aCondition) { \
70 gPassedTests++; \
71 } else { \
72 fail("Expected false, got true at %s:%d!", __FILE__, __LINE__); \
73 } \
74 PR_END_MACRO
76 #define do_check_success(aResult) \
77 do_check_true(NS_SUCCEEDED(aResult))
79 #define do_check_eq(aFirst, aSecond) \
80 do_check_true(aFirst == aSecond)
82 struct Test
84 void (*func)(void);
85 const char* const name;
87 #define TEST(aName) \
88 {aName, #aName}
90 /**
91 * Runs the next text.
93 void run_next_test();
95 /**
96 * To be used around asynchronous work.
98 void do_test_pending();
99 void do_test_finished();
102 * Adds a URI to the database.
104 * @param aURI
105 * The URI to add to the database.
107 void
108 addURI(nsIURI* aURI)
110 nsCOMPtr<nsINavHistoryService> hist =
111 do_GetService(NS_NAVHISTORYSERVICE_CONTRACTID);
113 PRInt64 id;
114 nsresult rv = hist->AddVisit(aURI, PR_Now(), nsnull,
115 nsINavHistoryService::TRANSITION_LINK, PR_FALSE,
116 0, &id);
117 do_check_success(rv);
120 already_AddRefed<IHistory>
121 do_get_IHistory()
123 nsCOMPtr<IHistory> history = do_GetService(NS_IHISTORY_CONTRACTID);
124 do_check_true(history);
125 return history.forget();