mirror of
https://github.com/eclipse/upm.git
synced 2025-03-14 20:47:30 +03:00

Signed-off-by: Stefan Andritoiu <stefan.andritoiu@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
61 lines
2.0 KiB
Python
Executable File
61 lines
2.0 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
import unittest as u
|
|
import re, fnmatch, os
|
|
|
|
rootDir = '../src/'
|
|
javaBlacklistFile = '../src/javaswig_blacklist'
|
|
pythonBlacklistFile = '../src/pythonswig_blacklist'
|
|
nodeBlacklistFile = '../src/nodeswig_blacklist'
|
|
|
|
|
|
class BlacklistConsistency(u.TestCase):
|
|
|
|
def test_java_blacklist(self):
|
|
|
|
with open(javaBlacklistFile) as f:
|
|
blacklist = [line.rstrip('\n') for line in f]
|
|
|
|
for libraryName in blacklist:
|
|
files = os.listdir( os.path.join(rootDir, libraryName))
|
|
interfaceFileName = "javaupm_" + libraryName + ".i"
|
|
|
|
if interfaceFileName in files:
|
|
self.fail("\n" + libraryName + " is in javaswig blacklist.\n" + \
|
|
"Remove it from blacklist or remove " + \
|
|
interfaceFileName + " from sources.")
|
|
|
|
|
|
def test_python_blacklist(self):
|
|
|
|
with open(pythonBlacklistFile) as f:
|
|
blacklist = [line.rstrip('\n') for line in f]
|
|
|
|
for libraryName in blacklist:
|
|
files = os.listdir( os.path.join(rootDir, libraryName))
|
|
interfaceFileName = "pyupm_" + libraryName + ".i"
|
|
|
|
if interfaceFileName in files:
|
|
self.fail("\n" + libraryName + " is in pythonswig blacklist.\n" + \
|
|
"Remove it from blacklist or remove " + \
|
|
interfaceFileName + " from sources.")
|
|
|
|
|
|
def test_node_blacklist(self):
|
|
|
|
with open(nodeBlacklistFile) as f:
|
|
blacklist = [line.rstrip('\n') for line in f]
|
|
|
|
for libraryName in blacklist:
|
|
files = os.listdir( os.path.join(rootDir, libraryName))
|
|
interfaceFileName = "jsupm_" + libraryName + ".i"
|
|
|
|
if interfaceFileName in files:
|
|
self.fail("\n" + libraryName + " is in nodeswig blacklist.\n" + \
|
|
"Remove it from blacklist or remove " + \
|
|
interfaceFileName + " from sources.")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
u.main()
|