1a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch/*
2a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * Copyright (C) 2010 Apple Inc. All rights reserved.
3a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch *
4a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * Redistribution and use in source and binary forms, with or without
5a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * modification, are permitted provided that the following conditions
6a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * are met:
7a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * 1. Redistributions of source code must retain the above copyright
8a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch *    notice, this list of conditions and the following disclaimer.
9a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * 2. Redistributions in binary form must reproduce the above copyright
10a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch *    notice, this list of conditions and the following disclaimer in the
11a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch *    documentation and/or other materials provided with the distribution.
12a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch *
13a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch * THE POSSIBILITY OF SUCH DAMAGE.
24a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch */
25a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
26a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include "TestsController.h"
27a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
28a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include "Test.h"
29a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include <algorithm>
30a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch#include <assert.h>
31a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
32a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochnamespace TestWebKitAPI {
33a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
34a94275402997c11dd2e778633dacf4b7e630a35dBen MurdochTestsController& TestsController::shared()
35a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
36a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    static TestsController& shared = *new TestsController;
37a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    return shared;
38a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
39a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
40a94275402997c11dd2e778633dacf4b7e630a35dBen MurdochTestsController::TestsController()
41a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    : m_testFailed(false)
42a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    , m_currentTest(0)
43a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
44a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
45a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
46a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochvoid TestsController::dumpTestNames()
47a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
48a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    std::map<std::string, CreateTestFunction>::const_iterator it = m_createTestFunctions.begin();
49a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    std::map<std::string, CreateTestFunction>::const_iterator end = m_createTestFunctions.end();
50a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    for (; it != end; ++it)
51a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch        printf("%s\n", (*it).first.c_str());
52a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
53a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
54a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochbool TestsController::runTestNamed(const std::string& identifier)
55a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
56a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    CreateTestFunction createTestFunction = m_createTestFunctions[identifier];
57a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    if (!createTestFunction) {
58a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch        printf("ERROR: Test not found - %s\n", identifier.c_str());
59a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch        return false;
60a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    }
61a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
62a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    m_currentTest = createTestFunction(identifier);
63a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    m_currentTest->run();
64a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
65a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    delete m_currentTest;
66a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    m_currentTest = 0;
67a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
68a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    return !m_testFailed;
69a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
70a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
71a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochvoid TestsController::testFailed(const char* file, int line, const char* message)
72a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
73a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    m_testFailed = true;
74a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    printf("FAIL: %s\n\t%s (%s:%d)\n", m_currentTest->name().c_str(), message, file, line);
75a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
76a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
77a94275402997c11dd2e778633dacf4b7e630a35dBen Murdochvoid TestsController::registerCreateTestFunction(const std::string& identifier, CreateTestFunction createTestFunction)
78a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch{
79a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch    m_createTestFunctions[identifier] = createTestFunction;
80a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch}
81a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch
82a94275402997c11dd2e778633dacf4b7e630a35dBen Murdoch} // namespace TestWebKitAPI
83