[accounts] Add a test container (bug 141)
[abstract.git] / storage / account / test / aaAccountTest.h
blob00b556ff7980c08ed8542d59482bcda2bc33786c
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2008 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #ifndef AAACCOUNTTEST_H
23 #define AAACCOUNTTEST_H
25 #define AA_ACCOUNT_TEST_CID \
26 {0x9f3b3e19, 0x2f06, 0x4a75, {0xbc, 0xb8, 0xd7, 0xd3, 0x5c, 0xaf, 0x9d, 0x36}}
27 #define AA_ACCOUNT_TEST_CONTRACT_ID "@aasii.org/storage/unit-account-core;1"
29 #include "nsCOMPtr.h"
31 #include "aaISession.h"
32 #include "aaILoadQuery.h"
33 #include "aaIFact.h"
34 #include "nsITestRunner.h"
36 class aaAccountTest: public nsITest
38 public:
39 aaAccountTest() {;}
40 virtual ~aaAccountTest() {;}
41 NS_DECL_ISUPPORTS
42 NS_DECL_NSITEST
43 private:
44 class RAII
46 public:
47 RAII(aaAccountTest *t);
48 ~RAII();
50 PRBool status;
51 private:
52 aaAccountTest* test;
53 void cleanQuotes();
56 //friend class RAII;
57 nsCOMPtr<aaISession> mSession;
58 nsCOMPtr<aaILoadQuery> mFlows;
59 nsCOMPtr<aaILoadQuery> mResources;
60 nsCOMPtr<aaILoadQuery> mEntities;
61 nsCOMPtr<aaIFact> mPendingFact;
63 double mRubs;
64 double mEuros;
65 double mProfit;
67 nsresult load();
68 void free();
70 nsresult testEmptyBalance(nsITestRunner *aTestRunner);
71 nsresult testPendingFacts(nsITestRunner *aTestRunner);
72 nsresult testQuote(nsITestRunner *aTestRunner);
73 nsresult testBalanceRow(nsITestRunner *aTestRunner);
74 nsresult testTransaction(nsITestRunner *aTestRunner);
75 nsresult testUpdateTransaction(nsITestRunner *aTestRunner);
76 nsresult testReplaceTransaction(nsITestRunner *aTestRunner);
77 nsresult testFlowBalance(nsITestRunner *aTestRunner);
78 nsresult testStateFilter(nsITestRunner *aTestRunner);
79 nsresult testCreditTransaction(nsITestRunner *aTestRunner);
80 nsresult testDeleteTransaction(nsITestRunner *aTestRunner);
81 nsresult testFlowChart(nsITestRunner *aTestRunner);
82 nsresult testIncomeRow(nsITestRunner *aTestRunner);
83 nsresult testLoadIncome(nsITestRunner *aTestRunner);
84 nsresult testStopTransaction(nsITestRunner *aTestRunner);
85 nsresult testLossTransaction(nsITestRunner *aTestRunner);
86 nsresult testSplitTransaction(nsITestRunner *aTestRunner);
87 nsresult testGainTransaction(nsITestRunner *aTestRunner);
88 nsresult testDirectGainsLosses(nsITestRunner *aTestRunner);
91 #endif /* AAACCOUNTTEST_H */