summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/reporters/report/html/html_base.py
blob: 36be5981a1a4f20fca92116cbbc684f3808da892 (plain)
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
##############################################################################
# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

__version__ = ''' '''

import os
import vstf.common.pyhtml as pyhtm


class HtmlBase(object):
    def __init__(self, provider):
        self._page = pyhtm.PyHtml('Html Text')
        self._provider = provider

    def save(self, ofile):
        if ofile:
            os.system('rm -rf %s' % ofile)
            self._page.output(ofile)

    def as_string(self):
        return self._page.as_string()

    def add_table(self, data):
        if data and zip(*data):
            self._page.add_table(data)

    def add_style(self):
        style = self._provider.get_style
        self._page.add_style(style)

    def create(self, ofile='text.html'):
        self.add_style()
        self.create_story()
        self.save(ofile)
        return self.as_string()

    def create_story(self):
        raise NotImplementedError("abstract HtmlBase")