1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : testclassdlg.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "ctags_manager.h"
#include "globals.h"
#include "imanager.h"
#include "open_resource_dialog.h"
#include "testclassdlg.h"
#include "unittestpp.h"
#include "windowattrmanager.h"
#include <algorithm>
#include <wx/app.h>
#include <wx/choicdlg.h>
#include <wx/msgdlg.h>
TestClassDlg::TestClassDlg(wxWindow* parent, IManager* mgr, UnitTestPP* plugin)
: TestClassBaseDlg(parent)
, m_manager(mgr)
, m_plugin(plugin)
{
TagEntryPtrVector_t tags;
m_manager->GetTagsManager()->GetClasses(tags);
for(auto tag : tags) {
m_tags[tag->GetName()].push_back(tag);
}
// populate the unit tests project list
std::vector<ProjectPtr> projects = m_plugin->GetUnitTestProjects();
for(size_t i = 0; i < projects.size(); i++) {
m_choiceProjects->Append(projects.at(i)->GetName());
}
if(m_choiceProjects->IsEmpty() == false) {
m_choiceProjects->SetSelection(0);
}
::clSetSmallDialogBestSizeAndPosition(this);
}
TestClassDlg::~TestClassDlg() {}
void TestClassDlg::OnUseActiveEditor(wxCommandEvent& event)
{
if(event.IsChecked()) {
IEditor* editor = m_manager->GetActiveEditor();
if(editor) {
m_textCtrlFileName->SetValue(editor->GetFileName().GetFullPath());
}
m_textCtrlFileName->Enable(true);
} else {
m_textCtrlFileName->Enable(false);
}
}
void TestClassDlg::OnCheckAll(wxCommandEvent& e)
{
// check all items
for(unsigned int idx = 0; idx < m_checkListMethods->GetCount(); idx++) {
m_checkListMethods->Check(idx, true);
}
}
void TestClassDlg::OnUnCheckAll(wxCommandEvent& e)
{
// check all items
for(unsigned int idx = 0; idx < m_checkListMethods->GetCount(); idx++) {
m_checkListMethods->Check(idx, false);
}
}
wxArrayString TestClassDlg::GetTestsList()
{
wxArrayString results;
for(unsigned int idx = 0; idx < m_checkListMethods->GetCount(); idx++) {
if(m_checkListMethods->IsChecked(idx)) {
wxString str = m_checkListMethods->GetString(idx);
str = str.BeforeFirst(wxT('('));
EscapeName(str);
str.Prepend(m_textCtrlClassName->GetValue() + wxT("_"));
results.Add(str);
}
}
return results;
}
void TestClassDlg::OnUseFixture(wxCommandEvent& e) { m_textCtrlFixtureName->Enable(e.IsChecked()); }
void TestClassDlg::OnButtonOk(wxCommandEvent& e)
{
// validate the class name
if(m_checkListMethods->GetCount() == 0) {
wxMessageBox(_("There are no tests to generate"), _("CodeLite"), wxICON_WARNING | wxOK);
return;
}
EndModal(wxID_OK);
}
void TestClassDlg::OnShowClassListDialog(wxCommandEvent& e)
{
m_textCtrlClassName->SetFocus();
OpenResourceDialog dlg(m_manager->GetTheApp()->GetTopWindow(), m_manager, "");
if(dlg.ShowModal() == wxID_OK && !dlg.GetSelections().empty()) {
OpenResourceDialogItemData* item = dlg.GetSelections().at(0);
// do something with the selected text
m_textCtrlClassName->SetValue(item->m_name);
// display the class methods
DoRefreshFunctions();
}
}
void TestClassDlg::DoRefreshFunctions(bool repportError)
{
if(m_tags.count(m_textCtrlClassName->GetValue()) == 0) {
if(repportError) {
wxMessageBox(_("Could not find match for class '") + m_textCtrlClassName->GetValue() + wxT("'"),
_("CodeLite"), wxICON_WARNING | wxOK);
}
m_checkListMethods->Clear();
return;
}
std::vector<TagEntryPtr> matches = m_tags[m_textCtrlClassName->GetValue()];
wxString theClass;
if(matches.size() == 1) {
// single match we are good
theClass = matches.at(0)->GetPath();
} else {
// suggest the user a multiple choice
wxArrayString choices;
for(size_t i = 0; i < matches.size(); ++i) {
wxString option;
TagEntryPtr t = matches.at(i);
choices.Add(t->GetPath());
}
theClass = wxGetSingleChoice(_("Select class:"), _("Select class:"), choices, this);
}
if(theClass.empty()) { // user clicked 'Cancel'
return;
}
// get list of methods for the given path
matches.clear();
wxArrayString kind;
kind.push_back("prototype");
kind.push_back("function");
m_manager->GetTagsManager()->TagsByScope(theClass, kind, matches);
wxStringSet_t uniqueNames;
wxArrayString methods;
std::for_each(matches.begin(), matches.end(), [&](TagEntryPtr m) {
if(uniqueNames.count(m->GetName()) == 0) {
methods.push_back(m->GetName());
uniqueNames.insert(m->GetName());
}
});
m_checkListMethods->Clear();
m_checkListMethods->Append(methods);
// check all items
for(unsigned int idx = 0; idx < m_checkListMethods->GetCount(); ++idx) {
m_checkListMethods->Check(idx, true);
}
}
void TestClassDlg::SetClassName(const wxString& clsName)
{
m_textCtrlClassName->SetValue(clsName);
DoRefreshFunctions(false);
}
void TestClassDlg::EscapeName(wxString& name)
{
name.Replace(wxT(" "), wxEmptyString);
name.Replace(wxT("~"), wxT("Tilda"));
name.Replace(wxT("="), wxT("Shave"));
name.Replace(wxT(">"), wxT("Gadol"));
name.Replace(wxT("<"), wxT("Katan"));
}
void TestClassDlg::OnClassNameUpdated(wxCommandEvent& event)
{
wxUnusedVar(event);
DoRefreshFunctions(false);
}
|