Fix tests

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-11-17 20:41:58 +01:00
parent 2eb2b6e437
commit 6bbda28881
No known key found for this signature in database
GPG Key ID: F941078878347C0C
3 changed files with 67 additions and 9 deletions

View File

@ -1945,10 +1945,30 @@ EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
public function testAppstoreDisabled() {
$this->config
->expects($this->once())
->method('getSystemValue')
->with('appstoreenabled', true)
->willReturn(false);
->will($this->returnCallback(function($var, $default) {
if ($var === 'appstoreenabled') {
return false;
}
return $default;
}));
$this->appData
->expects($this->never())
->method('getFolder');
$this->assertEquals([], $this->fetcher->get());
}
public function testNoInternet() {
$this->config
->method('getSystemValue')
->will($this->returnCallback(function($var, $default) {
if ($var === 'has_internet_connection') {
return false;
}
return $default;
}));
$this->appData
->expects($this->never())
->method('getFolder');

View File

@ -40,15 +40,33 @@ class CategoryFetcherTest extends FetcherBase {
public function testAppstoreDisabled() {
$this->config
->expects($this->once())
->method('getSystemValue')
->with('appstoreenabled', true)
->willReturn(false);
->will($this->returnCallback(function($var, $default) {
if ($var === 'appstoreenabled') {
return false;
}
return $default;
}));
$this->appData
->expects($this->never())
->method('getFolder');
$this->assertEquals([], $this->fetcher->get());
}
public function testNoInternet() {
$this->config
->method('getSystemValue')
->will($this->returnCallback(function($var, $default) {
if ($var === 'has_internet_connection') {
return false;
}
return $default;
}));
$this->appData
->expects($this->never())
->method('getFolder');
$this->assertEquals([], $this->fetcher->get());
}
}

View File

@ -78,6 +78,11 @@ abstract class FetcherBase extends TestCase {
$this->config
->expects($this->at(1))
->method('getSystemValue')
->with('has_internet_connection', true)
->willReturn(true);
$this->config
->expects($this->at(2))
->method('getSystemValue')
->with(
$this->equalTo('version'),
$this->anything()
@ -121,11 +126,16 @@ abstract class FetcherBase extends TestCase {
$this->config
->expects($this->at(1))
->method('getSystemValue')
->with('appstoreenabled', true)
->with('has_internet_connection', true)
->willReturn(true);
$this->config
->expects($this->at(2))
->method('getSystemValue')
->with('appstoreenabled', true)
->willReturn(true);
$this->config
->expects($this->at(3))
->method('getSystemValue')
->with(
$this->equalTo('version'),
$this->anything()
@ -277,11 +287,16 @@ abstract class FetcherBase extends TestCase {
$this->config
->expects($this->at(1))
->method('getSystemValue')
->with('appstoreenabled', true)
->with('has_internet_connection', true)
->willReturn(true);
$this->config
->expects($this->at(2))
->method('getSystemValue')
->with('appstoreenabled', true)
->willReturn(true);
$this->config
->expects($this->at(3))
->method('getSystemValue')
->with(
$this->equalTo('version'),
$this->anything()
@ -356,11 +371,16 @@ abstract class FetcherBase extends TestCase {
$this->config
->expects($this->at(1))
->method('getSystemValue')
->with('appstoreenabled', true)
->with('has_internet_connection', true)
->willReturn(true);
$this->config
->expects($this->at(2))
->method('getSystemValue')
->with('appstoreenabled', true)
->willReturn(true);
$this->config
->expects($this->at(3))
->method('getSystemValue')
->with(
$this->equalTo('version'),
$this->anything()