Menu

[r5]: / UnitTestCPP / testclassdlg.cpp  Maximize  Restore  History

Download this file

214 lines (185 with data), 6.0 kB

  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
210
211
212
213
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// 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 "open_type_dlg.h"
#include "unittestpp.h"
#include "testclassdlg.h"
#include "imanager.h"
#include "ctags_manager.h"
#include "windowattrmanager.h"
TestClassDlg::TestClassDlg( wxWindow* parent, IManager *mgr, UnitTestPP *plugin )
: TestClassBaseDlg( parent )
, m_manager(mgr)
, m_plugin(plugin)
{
m_manager->GetTagsManager()->GetClasses(m_tags);
// 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);
}
WindowAttrManager::Load(this, wxT("TestClassDlgAttr"), m_manager->GetConfigTool());
}
TestClassDlg::~TestClassDlg()
{
WindowAttrManager::Save(this, wxT("TestClassDlgAttr"), m_manager->GetConfigTool());
}
void TestClassDlg::OnRefreshFunctions( wxCommandEvent& event )
{
wxUnusedVar(event);
DoRefreshFunctions();
}
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::OnRefreshButtonUI(wxUpdateUIEvent& e)
{
e.Enable(m_textCtrlClassName->GetValue().IsEmpty() ? false : true );
}
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"), wxT("CodeLite"), wxICON_WARNING|wxOK);
return;
}
EndModal(wxID_OK);
}
void TestClassDlg::OnShowClassListDialog(wxCommandEvent& e)
{
OpenTypeDlg *dlg = new OpenTypeDlg(m_manager->GetTheApp()->GetTopWindow(), m_manager->GetTagsManager());
if (dlg->ShowModal() == wxID_OK) {
// do something with the selected text
m_textCtrlClassName->SetValue( dlg->GetSelectedTag()->GetName() );
// display the class methods
DoRefreshFunctions();
}
dlg->Destroy();
}
void TestClassDlg::DoRefreshFunctions(bool repportError)
{
std::vector<TagEntryPtr> matches;
// search m_tags for suitable name
for (size_t i=0; i<m_tags.size(); i++) {
TagEntryPtr tag = m_tags.at(i);
if (tag->GetName() == m_textCtrlClassName->GetValue()) {
matches.push_back(tag);
}
}
if (matches.empty()) {
if(repportError){
wxMessageBox(_("Could not find match for class '")+m_textCtrlClassName->GetValue()+wxT("'"), wxT("CodeLite"), wxICON_WARNING|wxOK);
}
return;
}
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(wxT("Select class:"), wxT("Select class:"), choices, this);
}
if (theClass.empty()) {//user clicked 'Cancel'
return;
}
// get list of methods for the given path
matches.clear();
m_manager->GetTagsManager()->TagsByScope(theClass, wxT("prototype"), matches, false, true);
// populate the list control
wxArrayString methods;
for (size_t i=0; i<matches.size(); i++) {
TagEntryPtr t = matches.at(i);
methods.Add(t->GetName() + t->GetSignature());
}
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"));
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.