public class MockSystemReader extends SystemReader
SystemReader
for tests.Constructor and Description |
---|
MockSystemReader()
Constructor for
MockSystemReader |
Modifier and Type | Method and Description |
---|---|
void |
clearProperties()
Clear properties
|
MonotonicClock |
getClock()
Get clock instance preferred by this system.
|
long |
getCurrentTime()
Get the current system time
|
DateFormat |
getDateTimeInstance(int dateStyle,
int timeStyle)
Returns a date/time format instance for the given styles.
|
String |
getenv(String variable)
Get value of the system variable
|
String |
getHostname()
Gets the hostname of the local host.
|
Locale |
getLocale()
Get the locale to use
|
String |
getProperty(String key)
Get value of the system property
|
SimpleDateFormat |
getSimpleDateFormat(String pattern)
Returns a simple date format instance as specified by the given pattern.
|
TimeZone |
getTimeZone()
Get system time zone, possibly mocked for testing
|
int |
getTimezone(long when)
Get the local time zone
|
FileBasedConfig |
openSystemConfig(Config parent,
FS fs)
Open the gitconfig configuration found in the system-wide "etc" directory
|
FileBasedConfig |
openUserConfig(Config parent,
FS fs)
Open the git configuration found in the user home
|
void |
setCurrentPlatform()
Assign some properties for the currently executing platform
|
void |
setProperty(String key,
String value)
Set a property
|
void |
setUnix()
Emulate Unix
|
void |
setWindows()
Emulate Windows
|
void |
tick(int secDelta)
Adjusts the current time in seconds.
|
checkPath, checkPath, getInstance, getSimpleDateFormat, isMacOS, isWindows, setInstance, setPlatformChecker
public void clearProperties()
public void setProperty(String key, String value)
key
- value
- public String getenv(String variable)
getenv
in class SystemReader
variable
- system variable to readpublic String getProperty(String key)
getProperty
in class SystemReader
key
- of the system property to readpublic FileBasedConfig openUserConfig(Config parent, FS fs)
openUserConfig
in class SystemReader
parent
- a config with values not found directly in the returned configfs
- the file system abstraction which will be necessary to perform
certain file system operations.public FileBasedConfig openSystemConfig(Config parent, FS fs)
openSystemConfig
in class SystemReader
parent
- a config with values not found directly in the returned
config. Null is a reasonable value here.fs
- the file system abstraction which will be necessary to perform
certain file system operations.public String getHostname()
getHostname
in class SystemReader
public long getCurrentTime()
getCurrentTime
in class SystemReader
public MonotonicClock getClock()
getClock
in class SystemReader
public void tick(int secDelta)
secDelta
- number of seconds to add to the current time.public int getTimezone(long when)
getTimezone
in class SystemReader
when
- a system timestamppublic TimeZone getTimeZone()
getTimeZone
in class SystemReader
public Locale getLocale()
getLocale
in class SystemReader
public SimpleDateFormat getSimpleDateFormat(String pattern)
getSimpleDateFormat
in class SystemReader
pattern
- the pattern as defined in
SimpleDateFormat.SimpleDateFormat(String)
public DateFormat getDateTimeInstance(int dateStyle, int timeStyle)
getDateTimeInstance
in class SystemReader
dateStyle
- the date style as specified in
DateFormat.getDateTimeInstance(int, int)
timeStyle
- the time style as specified in
DateFormat.getDateTimeInstance(int, int)
public void setCurrentPlatform()
public void setWindows()
public void setUnix()
Copyright © 2018 Eclipse JGit Project. All rights reserved.