FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/embed_tests/TestPythonEngineProperties.cs at drop-python2 · filmor/pythonnet · GitHub
filmor
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
embed_tests
/
TestPythonEngineProperties.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
194 lines (155 loc) · 5.25 KB
Breadcrumbs
pythonnet
/
src
/
embed_tests
/
TestPythonEngineProperties.cs
Copy path
File metadata and controls
194 lines (155 loc) · 5.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
using
System
;
using
NUnit
.
Framework
;
using
Python
.
Runtime
;
namespace
Python
.
EmbeddingTest
{
public
class
TestPythonEngineProperties
{
[
Test
]
public
static
void
GetBuildinfoDoesntCrash
(
)
{
using
(
Py
.
GIL
(
)
)
{
string
s
=
PythonEngine
.
BuildInfo
;
Assert
.
True
(
s
.
Length
>
5
)
;
Assert
.
True
(
s
.
Contains
(
","
)
)
;
}
}
[
Test
]
public
static
void
GetCompilerDoesntCrash
(
)
{
using
(
Py
.
GIL
(
)
)
{
string
s
=
PythonEngine
.
Compiler
;
Assert
.
True
(
s
.
Length
>
0
)
;
Assert
.
True
(
s
.
Contains
(
"["
)
)
;
Assert
.
True
(
s
.
Contains
(
"]"
)
)
;
}
}
[
Test
]
public
static
void
GetCopyrightDoesntCrash
(
)
{
using
(
Py
.
GIL
(
)
)
{
string
s
=
PythonEngine
.
Copyright
;
Assert
.
True
(
s
.
Length
>
0
)
;
Assert
.
True
(
s
.
Contains
(
"Python Software Foundation"
)
)
;
}
}
[
Test
]
public
static
void
GetPlatformDoesntCrash
(
)
{
using
(
Py
.
GIL
(
)
)
{
string
s
=
PythonEngine
.
Platform
;
Assert
.
True
(
s
.
Length
>
0
)
;
Assert
.
True
(
s
.
Contains
(
"x"
)
||
s
.
Contains
(
"win"
)
)
;
}
}
[
Test
]
public
static
void
GetVersionDoesntCrash
(
)
{
using
(
Py
.
GIL
(
)
)
{
string
s
=
PythonEngine
.
Version
;
Assert
.
True
(
s
.
Length
>
0
)
;
Assert
.
True
(
s
.
Contains
(
","
)
)
;
}
}
[
Test
]
public
static
void
GetPythonPathDefault
(
)
{
PythonEngine
.
Initialize
(
)
;
string
s
=
PythonEngine
.
PythonPath
;
StringAssert
.
Contains
(
"python"
,
s
.
ToLower
(
)
)
;
PythonEngine
.
Shutdown
(
)
;
}
[
Test
]
public
static
void
GetProgramNameDefault
(
)
{
PythonEngine
.
Initialize
(
)
;
string
s
=
PythonEngine
.
PythonHome
;
Assert
.
NotNull
(
s
)
;
PythonEngine
.
Shutdown
(
)
;
}
/// <summary>
/// Test default behavior of PYTHONHOME. If ENVVAR is set it will
/// return the same value. If not, returns EmptyString.
/// </summary>
/// <remarks>
/// AppVeyor.yml has been update to tests with ENVVAR set.
/// </remarks>
[
Test
]
public
static
void
GetPythonHomeDefault
(
)
{
string
envPythonHome
=
Environment
.
GetEnvironmentVariable
(
"PYTHONHOME"
)
??
""
;
PythonEngine
.
Initialize
(
)
;
string
enginePythonHome
=
PythonEngine
.
PythonHome
;
Assert
.
AreEqual
(
envPythonHome
,
enginePythonHome
)
;
PythonEngine
.
Shutdown
(
)
;
}
[
Test
]
public
void
SetPythonHome
(
)
{
// We needs to ensure that engine was started and shutdown at least once before setting dummy home.
// Otherwise engine will not run with dummy path with random problem.
if
(
!
PythonEngine
.
IsInitialized
)
{
PythonEngine
.
Initialize
(
)
;
}
PythonEngine
.
Shutdown
(
)
;
var
pythonHomeBackup
=
PythonEngine
.
PythonHome
;
var
pythonHome
=
"/dummypath/"
;
PythonEngine
.
PythonHome
=
pythonHome
;
PythonEngine
.
Initialize
(
)
;
PythonEngine
.
Shutdown
(
)
;
// Restoring valid pythonhome.
PythonEngine
.
PythonHome
=
pythonHomeBackup
;
}
[
Test
]
public
void
SetPythonHomeTwice
(
)
{
// We needs to ensure that engine was started and shutdown at least once before setting dummy home.
// Otherwise engine will not run with dummy path with random problem.
if
(
!
PythonEngine
.
IsInitialized
)
{
PythonEngine
.
Initialize
(
)
;
}
PythonEngine
.
Shutdown
(
)
;
var
pythonHomeBackup
=
PythonEngine
.
PythonHome
;
var
pythonHome
=
"/dummypath/"
;
PythonEngine
.
PythonHome
=
"/dummypath2/"
;
PythonEngine
.
PythonHome
=
pythonHome
;
PythonEngine
.
Initialize
(
)
;
Assert
.
AreEqual
(
pythonHome
,
PythonEngine
.
PythonHome
)
;
PythonEngine
.
Shutdown
(
)
;
PythonEngine
.
PythonHome
=
pythonHomeBackup
;
}
[
Test
]
public
void
SetProgramName
(
)
{
if
(
PythonEngine
.
IsInitialized
)
{
PythonEngine
.
Shutdown
(
)
;
}
var
programNameBackup
=
PythonEngine
.
ProgramName
;
var
programName
=
"FooBar"
;
PythonEngine
.
ProgramName
=
programName
;
PythonEngine
.
Initialize
(
)
;
Assert
.
AreEqual
(
programName
,
PythonEngine
.
ProgramName
)
;
PythonEngine
.
Shutdown
(
)
;
PythonEngine
.
ProgramName
=
programNameBackup
;
}
[
Test
]
public
void
SetPythonPath
(
)
{
PythonEngine
.
Initialize
(
)
;
string
path
=
PythonEngine
.
PythonPath
;
PythonEngine
.
Shutdown
(
)
;
PythonEngine
.
PythonPath
=
path
;
PythonEngine
.
Initialize
(
)
;
Assert
.
AreEqual
(
path
,
PythonEngine
.
PythonPath
)
;
PythonEngine
.
Shutdown
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL