Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > I am just trying to find out if there is any relevant/currentresearch in the production of a generic quality assurance tool for my PhD.

Reply
Thread Tools

I am just trying to find out if there is any relevant/currentresearch in the production of a generic quality assurance tool for my PhD.

 
 
Darryl Owens
Guest
Posts: n/a
 
      10-06-2012
I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:
• Problems in code/coding errors
• Compiler bugs
• Language bugs
• Users mathematical model
I would greatly appreciate any input and advice in this area, feel free to repost on this topic and/or contact me at:

Thank you in advance

Darryl Owens
 
Reply With Quote
 
 
 
 
Ramchandra Apte
Guest
Posts: n/a
 
      10-07-2012
On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens wrote:
> I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:
>
> • Problems in code/coding errors
>
> • Compiler bugs
>
> • Language bugs
>
> • Users mathematical model
>
> I would greatly appreciate any input and advice in this area, feel free to repost on this topic and/or contact me at:
>
>
>
> Thank you in advance
>
>
>
> Darryl Owens


Does this have anything to do with Python?

Banned from #python-offtopic till Christmas
 
Reply With Quote
 
 
 
 
rusi
Guest
Posts: n/a
 
      10-07-2012
On Oct 7, 9:15*am, Ramchandra Apte <maniandra...@gmail.com> wrote:
> On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens *wrote:
> > I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to find outif there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:

>
> > • * * * *Problems in code/coding errors

>
> > • * * * *Compiler bugs

>
> > • * * * *Language bugs

>
> > • * * * *Users mathematical model

>
> > I would greatly appreciate any input and advice in this area, feel freeto repost on this topic and/or contact me at: owens.darryl....@gmail.com

>
> > Thank you in advance

>
> > Darryl Owens

>
> Does this have anything to do with Python?


Why not?

>
> Banned from #python-offtopic till Christmas


Did you wait for an answer?
 
Reply With Quote
 
Ramchandra Apte
Guest
Posts: n/a
 
      10-07-2012
On Sunday, 7 October 2012 10:32:45 UTC+5:30, rusi wrote:
> On Oct 7, 9:15*am, Ramchandra Apte <maniandra...@gmail.com> wrote:
>
> > On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens *wrote:

>
> > > I am currently starting my PhD in software quality assurance and havebeen doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a genericquality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:

>
> >

>
> > > • * * * *Problems in code/coding errors

>
> >

>
> > > • * * * *Compiler bugs

>
> >

>
> > > • * * * *Language bugs

>
> >

>
> > > • * * * *Users mathematical model

>
> >

>
> > > I would greatly appreciate any input and advice in this area, feel free to repost on this topic and/or contact me at: owens.darryl....@gmail.com

>
> >

>
> > > Thank you in advance

>
> >

>
> > > Darryl Owens

>
> >

>
> > Does this have anything to do with Python?

>
>
>
> Why not?
>
>
>
> >

>
> > Banned from #python-offtopic till Christmas

>
>
>
> Did you wait for an answer?


no
 
Reply With Quote
 
Dwight Hutto
Guest
Posts: n/a
 
      10-07-2012
On Sun, Oct 7, 2012 at 1:02 AM, rusi <> wrote:
> On Oct 7, 9:15 am, Ramchandra Apte <maniandra...@gmail.com> wrote:
>> On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens wrote:
>> > I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:

>>
>> > • Problems in code/coding errors

>>
>> > • Compiler bugs

>>
>> > • Language bugs

>>
>> > • Users mathematical model

>>

The main tests for python is:

http://docs.python.org/library/unittest.html


For other languages, and even in python, you can roll your own.

I'd begin by algorithming each particular language's calls(based on
the statistical probabilities of languages that are utilized, and
designed in a hierarchical order of the utilization), language bugs,
and mathematical models needed performed, then perform the necessary
function calls/series of calls.

Pass data, and check the returns.

CMD errors in some cases, and checking for error logs from URL calls.

I'd suggest the bug repositories for the OS, browser, or app framework
the language is launched in(version/build #, etc), or some form of url
scraping the data from these in order to correct/check known problems.


--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
Dwight Hutto
Guest
Posts: n/a
 
      10-07-2012
On Sun, Oct 7, 2012 at 1:55 AM, Dwight Hutto <> wrote:
> On Sun, Oct 7, 2012 at 1:02 AM, rusi <> wrote:
>> On Oct 7, 9:15 am, Ramchandra Apte <maniandra...@gmail.com> wrote:
>>> On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens wrote:
>>> > I am currently starting my PhD in software quality assurance and havebeen doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a genericquality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:
>>>
>>> > • Problems in code/coding errors
>>>
>>> > • Compiler bugs
>>>
>>> > • Language bugs
>>>
>>> > • Users mathematical model
>>>


You could also utilize other unittests from other languages, and roll
that into wrappers that checked for specific languages utilization,
and it's probable errors, by initiating the unittest functions with a
python call specific to the language being utilized.

--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
Dwight Hutto
Guest
Posts: n/a
 
      10-07-2012
On Sun, Oct 7, 2012 at 2:03 AM, Dwight Hutto <> wrote:
> On Sun, Oct 7, 2012 at 1:55 AM, Dwight Hutto <> wrote:
>> On Sun, Oct 7, 2012 at 1:02 AM, rusi <> wrote:
>>> On Oct 7, 9:15 am, Ramchandra Apte <maniandra...@gmail.com> wrote:
>>>> On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens wrote:
>>>> > I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to find out if there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:
>>>>
>>>> > • Problems in code/coding errors
>>>>
>>>> > • Compiler bugs
>>>>
>>>> > • Language bugs
>>>>
>>>> > • Users mathematical model
>>>>

>


Maybe easier through checking particular error logs.


--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
Dwight Hutto
Guest
Posts: n/a
 
      10-07-2012
On Sun, Oct 7, 2012 at 2:16 AM, Dwight Hutto <> wrote:
> On Sun, Oct 7, 2012 at 2:03 AM, Dwight Hutto <> wrote:
>> On Sun, Oct 7, 2012 at 1:55 AM, Dwight Hutto <> wrote:
>>> On Sun, Oct 7, 2012 at 1:02 AM, rusi <> wrote:
>>>> On Oct 7, 9:15 am, Ramchandra Apte <maniandra...@gmail.com> wrote:
>>>>> On Sunday, 7 October 2012 00:13:58 UTC+5:30, Darryl Owens wrote:
>>>>> > I am currently starting my PhD in software quality assurance and have been doing a lot of reading round this subject. I am just trying to findout if there is any relevant/current research in the production of a generic quality assurance tool i.e. a tool/methodology that can accept many languages for the following areas:
>>>>>
>>>>> > • Problems in code/coding errors
>>>>>
>>>>> > • Compiler bugs
>>>>>
>>>>> > • Language bugs
>>>>>
>>>>> > • Users mathematical model
>>>>>

>>

It is about 2:30 A.M. here, and I'm tossing out thoughts that could go deeper.

You're looking for:

>>>> > • Problems in code/coding errors
>>>>
>>>> > • Compiler bugs
>>>>
>>>> > • Language bugs
>>>>
>>>> > • Users mathematical model
>>>>

>


The below is the base algorithm I see for every language:

There are problems, and ways to test in every language. Some have more
advanced tests based on their usage, and those who use them.

You have identified the errors needed to be checked for:
-Problems in code/coding errors
-Compiler bugs
-Language bugs
-Users mathematical model

1. You have test methods in lots of languages for these, and you need
to parse for the file extension, or something in the code that shows
it has switched to a new language. I'm assuming classes and functions
here

2. It seems like you should have a file/script in each language to
check for as much as you can.

3. You could call these scripts via a python command line app, and
have an app to display the output, and check for know error calls
returned from the command line output(stderr/stdin/,etc), or the
browsers output/error logs.

4. You could go to a lower level.

5. You're in python, so pick the best way to wrap and execute the
above based on file extensions, and parsing, then run your test on
portions of code if the have parameters or error values, or the code
as a whole, and deal with each of the problems stated above.

This is just to begin to understand your mentality of how you want to
implement in python.

--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
I am just trying to find out if there is any relevant/currentresearch in the production of a generic quality assurance tool for my PhD. Darryl Owens C Programming 1 11-12-2012 05:33 AM
I am just trying to find out if there is any relevant/currentresearch in the production of a generic quality assurance tool for my PhD. Darryl Owens C++ 1 10-06-2012 09:28 PM
Code Quality Assurance and Classification Stefan Ram Java 4 02-01-2006 09:06 AM
Does anyone ever heard about quality assurance in helpdesks? Frιdιric Computer Support 0 07-13-2003 05:26 PM
ISO resources/references on quality assurance/testing wrt Java lvirden@yahoo.com Java 0 06-30-2003 05:26 PM



Advertisments
 



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