Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

195

196

197

198

199

200

201

202

import os 

import nose 

import shutil 

import yaml 

import unittest 

from polyglot.utKit import utKit 

 

from fundamentals import tools 

 

su = tools( 

arguments={"settingsFile": None}, 

docString=__doc__, 

logLevel="DEBUG", 

options_first=False, 

projectName="polyglot" 

) 

arguments, settings, log, dbConn = su.setup() 

 

# # load settings 

# stream = file( 

# "/Users/Dave/.config/polyglot/polyglot.yaml", 'r') 

# settings = yaml.load(stream) 

# stream.close() 

 

# SETUP AND TEARDOWN FIXTURE FUNCTIONS FOR THE ENTIRE MODULE 

moduleDirectory = os.path.dirname(__file__) 

utKit = utKit(moduleDirectory) 

log, dbConn, pathToInputDir, pathToOutputDir = utKit.setupModule() 

utKit.tearDownModule() 

 

# load settings 

stream = file( 

pathToInputDir + "/example_settings.yaml", 'r') 

settings = yaml.load(stream) 

stream.close() 

 

# import shutil 

try: 

shutil.rmtree(pathToOutputDir) 

except: 

pass 

 

# Recursively create missing directories 

if not os.path.exists(pathToOutputDir): 

os.makedirs(pathToOutputDir) 

 

# xt-setup-unit-testing-files-and-folders 

 

 

class test_ebook(unittest.TestCase): 

 

# def test_epub_function(self): 

 

# from polyglot import ebook 

# this = ebook( 

# log=log, 

# settings=settings, 

# urlOrPath="http://www.thespacedoctor.co.uk/blog/2016/09/26/mysqlSucker-index.html", 

# title=False, 

# bookFormat="epub", 

# outputDirectory=pathToOutputDir, 

# header=False, 

# footer=False 

# ) 

# this._url_to_epub() 

 

# from polyglot import ebook 

# epub = ebook( 

# log=log, 

# settings=settings, 

# urlOrPath="http://www.thespacedoctor.co.uk/blog/2016/09/26/mysqlSucker-index.html", 

# title=False, 

# bookFormat="epub", 

# outputDirectory=pathToOutputDir, 

# header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

# footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

# ) 

# pathToEpub = epub.get() 

# print pathToEpub 

 

# from polyglot import ebook 

# epub = ebook( 

# log=log, 

# settings=settings, 

# urlOrPath="http://www.thespacedoctor.co.uk/blog/2016/09/26/mysqlSucker-index.html", 

# title="my first book", 

# bookFormat="epub", 

# outputDirectory=pathToOutputDir, 

# header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

# footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

# ) 

# pathToEpub = epub.get() 

# print pathToEpub 

 

# def test_mobi_function(self): 

 

# from polyglot import ebook 

# mobi = ebook( 

# log=log, 

# settings=settings, 

# urlOrPath="http://www.thespacedoctor.co.uk/blog/2016/09/26/mysqlSucker-index.html", 

# title=False, 

# bookFormat="mobi", 

# outputDirectory=pathToOutputDir, 

# header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

# footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

# ) 

# pathToEpub = mobi.get() 

# print pathToEpub 

 

# from polyglot import ebook 

# mobi = ebook( 

# log=log, 

# settings=settings, 

# urlOrPath="http://www.thespacedoctor.co.uk/blog/2016/09/26/mysqlSucker-index.html", 

# title="my first book", 

# bookFormat="mobi", 

# outputDirectory=pathToOutputDir, 

# header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

# footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

# ) 

# pathToEpub = mobi.get() 

# print pathToEpub 

 

def test_docx_to_epub_function(self): 

 

from polyglot import ebook 

epub = ebook( 

log=log, 

settings=settings, 

urlOrPath=pathToInputDir + "Volkswagen.docx", 

title=False, 

bookFormat="epub", 

outputDirectory=pathToOutputDir, 

header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

) 

pathToEpub = epub.get() 

print pathToEpub 

 

from polyglot import ebook 

epub = ebook( 

log=log, 

settings=settings, 

urlOrPath=pathToInputDir + "Volkswagen.docx", 

title="A book about a car", 

bookFormat="epub", 

outputDirectory=pathToOutputDir, 

header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

) 

pathToEpub = epub.get() 

print pathToEpub 

 

def test_docx_to_mobi_function(self): 

 

from polyglot import ebook 

mobi = ebook( 

log=log, 

settings=settings, 

urlOrPath=pathToInputDir + "Volkswagen.docx", 

title=False, 

bookFormat="mobi", 

outputDirectory=pathToOutputDir, 

header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

) 

pathToMobi = mobi.get() 

print pathToMobi 

 

from polyglot import ebook 

mobi = ebook( 

log=log, 

settings=settings, 

urlOrPath=pathToInputDir + "Volkswagen.docx", 

title="A book about a car", 

bookFormat="mobi", 

outputDirectory=pathToOutputDir, 

header='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>', 

footer='<a href="http://www.thespacedoctor.co.uk">thespacedoctor</a>' 

) 

pathToMobi = mobi.get() 

print pathToMobi 

 

def test_ebook_function_exception(self): 

 

from polyglot import ebook 

try: 

this = ebook( 

log=log, 

settings=settings, 

fakeKey="break the code" 

) 

this.get() 

assert False 

except Exception, e: 

assert True 

print str(e) 

 

# x-print-testpage-for-pessto-marshall-web-object 

 

# x-class-to-test-named-worker-function