seaside testing on pharo 1.2

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

seaside testing on pharo 1.2

Tudor Girba
Hi,

Did anyone get SeasideTesting working in Pharo 1.2?

We tried, but it does not seem to work because of something related to SMock.

Cheers,
Doru


--
www.tudorgirba.com

"From an abstract enough point of view, any two things are similar."



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside testing on pharo 1.2

Johan Brichau-2
Hi Doru,

SMock is only needed to run the unit tests of Seaside testing.

I have never tried in Pharo1.2 but I'm also only loading it without the tests in Pharo1.1 because there is indeed a loading error for SMock.
I don't exactly remember how to address that right now, I will check tomorrow.

Did you try loading the metacello group that does not include the tests?

Johan

On 11 Jan 2011, at 22:49, Tudor Girba wrote:

> Hi,
>
> Did anyone get SeasideTesting working in Pharo 1.2?
>
> We tried, but it does not seem to work because of something related to SMock.
>
> Cheers,
> Doru
>
>
> --
> www.tudorgirba.com
>
> "From an abstract enough point of view, any two things are similar."
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside testing on pharo 1.2

Tudor Girba
Thanks, Johan.

Cheers,
Doru


On 11 Jan 2011, at 23:09, Johan Brichau wrote:

>
> SMock is only needed to run the unit tests of Seaside testing.
>
> I have never tried in Pharo1.2 but I'm also only loading it without the tests in Pharo1.1 because there is indeed a loading error for SMock.
> I don't exactly remember how to address that right now, I will check tomorrow.
>

--
www.tudorgirba.com

"Every successful trip needs a suitable vehicle."




_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside testing on pharo 1.2

Johan Brichau-2
Doru,

How are you loading SeasideTesting in Pharo1.2?
I'm getting load errors because OB is trying to load for Seaside30...

btw, Pharo1.1.1 does not give any problems for me anymore concerning SMock.


On 12 Jan 2011, at 08:32, Tudor Girba wrote:

> Thanks, Johan.
>
> Cheers,
> Doru
>
>
> On 11 Jan 2011, at 23:09, Johan Brichau wrote:
>
>>
>> SMock is only needed to run the unit tests of Seaside testing.
>>
>> I have never tried in Pharo1.2 but I'm also only loading it without the tests in Pharo1.1 because there is indeed a loading error for SMock.
>> I don't exactly remember how to address that right now, I will check tomorrow.
>>
>
> --
> www.tudorgirba.com
>
> "Every successful trip needs a suitable vehicle."
>
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside testing on pharo 1.2

Dale Henrichs
Johan,

I don't know how Doru does it, but for if you preload OmniBrowser that
will satisfy Seaside3.0 no attempt will be made to load OmniBrowser for
Seaside.

Dale

On 01/13/2011 12:14 PM, Johan Brichau wrote:

> Doru,
>
> How are you loading SeasideTesting in Pharo1.2?
> I'm getting load errors because OB is trying to load for Seaside30...
>
> btw, Pharo1.1.1 does not give any problems for me anymore concerning SMock.
>
>
> On 12 Jan 2011, at 08:32, Tudor Girba wrote:
>
>> Thanks, Johan.
>>
>> Cheers,
>> Doru
>>
>>
>> On 11 Jan 2011, at 23:09, Johan Brichau wrote:
>>
>>>
>>> SMock is only needed to run the unit tests of Seaside testing.
>>>
>>> I have never tried in Pharo1.2 but I'm also only loading it without the tests in Pharo1.1 because there is indeed a loading error for SMock.
>>> I don't exactly remember how to address that right now, I will check tomorrow.
>>>
>>
>> --
>> www.tudorgirba.com
>>
>> "Every successful trip needs a suitable vehicle."
>>
>>
>>
>>
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside testing on pharo 1.2

Johan Brichau-2

Thanks Dale. Indeed, I thought the latest OB would be loaded automatically for Pharo1.2 but that's not the case.
Anyway, I'm getting it work now.

Doru, SeasideTesting is working fine in Pharo1.2. I just launched all our tests and they are running fine ;-)
I also loaded the entire latest baseline and it's working as much as it's working in Pharo1.1, that means:
- simulated browser testing is working fine, except for some tests I need to fix
- external browser testing is not working yet. Some tests are working, but I'm still wondering if it's not easier to use WebTester instead of porting this.


On 13 Jan 2011, at 21:35, Dale Henrichs wrote:

> Johan,
>
> I don't know how Doru does it, but for if you preload OmniBrowser that will satisfy Seaside3.0 no attempt will be made to load OmniBrowser for Seaside.
>
> Dale
>
> On 01/13/2011 12:14 PM, Johan Brichau wrote:
>> Doru,
>>
>> How are you loading SeasideTesting in Pharo1.2?
>> I'm getting load errors because OB is trying to load for Seaside30...
>>
>> btw, Pharo1.1.1 does not give any problems for me anymore concerning SMock.
>>
>>
>> On 12 Jan 2011, at 08:32, Tudor Girba wrote:
>>
>>> Thanks, Johan.
>>>
>>> Cheers,
>>> Doru
>>>
>>>
>>> On 11 Jan 2011, at 23:09, Johan Brichau wrote:
>>>
>>>>
>>>> SMock is only needed to run the unit tests of Seaside testing.
>>>>
>>>> I have never tried in Pharo1.2 but I'm also only loading it without the tests in Pharo1.1 because there is indeed a loading error for SMock.
>>>> I don't exactly remember how to address that right now, I will check tomorrow.
>>>>
>>>
>>> --
>>> www.tudorgirba.com
>>>
>>> "Every successful trip needs a suitable vehicle."
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> seaside mailing list
>>> [hidden email]
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>>
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside