transport: pass correct channel
[abstract.git] / storage / account / test / aaAccountTest.h
blobdb406156453cdab4924476e88d31d8c837f3f8ef
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 "@aasii.org/storage/unit-account-core;1"
29 #include "nsCOMPtr.h"
31 class nsIArray;
32 class aaISqlRequest;
33 class aaISession;
34 class aaIFact;
35 #ifdef DEBUG
36 #include "nsIArray.h"
37 #include "aaISession.h"
38 #include "aaISqlRequest.h"
39 #include "aaIFact.h"
40 #endif
42 class aaAccountTest: public nsITest
44 public:
45 aaAccountTest() {;}
46 NS_DECL_ISUPPORTS
47 NS_DECL_NSITEST
48 private:
49 ~aaAccountTest() {;}
50 class RAII
52 public:
53 RAII(aaAccountTest *t);
54 ~RAII();
56 PRBool status;
57 private:
58 aaAccountTest* test;
59 nsresult init();
62 nsCOMPtr<aaISession> mSession;
63 nsCOMPtr<aaISqlRequest> mFlowLoader;
64 nsCOMPtr<aaISqlRequest> mResourceLoader;
65 nsCOMPtr<aaISqlRequest> mEntityLoader;
66 nsCOMPtr<aaISqlRequest> mBalanceLoader;
67 nsCOMPtr<aaISqlRequest> mPendingLoader;
68 nsCOMPtr<aaISqlRequest> mIncomeLoader;
69 nsCOMPtr<aaISqlRequest> mTxnLoader;
70 nsCOMPtr<nsIArray> mFlows;
71 nsCOMPtr<nsIArray> mResources;
72 nsCOMPtr<nsIArray> mEntities;
73 nsCOMPtr<nsIArray> mBalanceSet;
74 nsCOMPtr<nsIArray> mIncomeSet;
75 nsCOMPtr<nsIArray> mTxnSet;
76 nsCOMPtr<aaIFact> mPendingFact;
78 PRUint32 mPendingCount;
79 double mRubs;
80 double mEuros;
81 double mProfit;
83 nsresult loadBalanceSet();
84 nsresult loadIncomeSet();
85 nsresult loadPendingFact(nsITestRunner *aTestRunner);
86 nsresult loadLastTxn();
88 nsresult testEmptyBalance(nsITestRunner *aTestRunner);
89 nsresult testPendingFacts(nsITestRunner *aTestRunner);
90 nsresult testChart(nsITestRunner *aTestRunner);
91 nsresult testTransaction(nsITestRunner *aTestRunner);
92 nsresult testUpdateTransaction(nsITestRunner *aTestRunner);
93 nsresult testReplaceTransaction(nsITestRunner *aTestRunner);
94 nsresult testStateFilter(nsITestRunner *aTestRunner);
95 nsresult testCreditTransaction(nsITestRunner *aTestRunner);
96 nsresult testDeleteTransaction(nsITestRunner *aTestRunner);
97 nsresult testFlowChart(nsITestRunner *aTestRunner);
98 nsresult testLoadIncome(nsITestRunner *aTestRunner);
99 nsresult testStopTransaction(nsITestRunner *aTestRunner);
100 nsresult testLossTransaction(nsITestRunner *aTestRunner);
101 nsresult testSplitTransaction(nsITestRunner *aTestRunner);
102 nsresult testGainTransaction(nsITestRunner *aTestRunner);
103 nsresult testDirectGainsLosses(nsITestRunner *aTestRunner);
106 #endif /* AAACCOUNTTEST_H */