예제 #1
0
def test_online_with_chart():
    old_host = constants.CONFIGURATION['HOST']
    online()
    v1 = [5, 20, 36, 10, 75, 90]
    v2 = [10, 25, 8, 60, 20, 80]
    bar = Bar("柱状图数据堆叠示例")
    bar.add("商家A", CLOTHES, v1, is_stack=True)
    bar.add("商家B", CLOTHES, v2, is_stack=True)
    html = bar._repr_html_()
    assert DEFAULT_HOST in html
    constants.CONFIGURATION['HOST'] = old_host
예제 #2
0
def test_online_with_page():
    old_host = constants.CONFIGURATION['HOST']
    online()
    page = Page()
    v1 = [5, 20, 36, 10, 75, 90]
    bar = Bar("柱状图数据堆叠示例")
    bar.add("商家A", CLOTHES, v1, is_stack=True)
    page.add(bar)

    html = page._repr_html_()
    assert DEFAULT_HOST in html
    constants.CONFIGURATION['HOST'] = old_host
예제 #3
0
def test_in_event_of_overly_configured_custom_url_is_precedent():
    old_host = constants.CONFIGURATION['HOST']
    local_host = 'http://localhost:8000'
    online()
    v1 = [5, 20, 36, 10, 75, 90]
    v2 = [10, 25, 8, 60, 20, 80]
    bar = Bar("柱状图数据堆叠示例", jshost=local_host)
    bar.add("商家A", CLOTHES, v1, is_stack=True)
    bar.add("商家B", CLOTHES, v2, is_stack=True)
    html = bar._repr_html_()
    assert DEFAULT_HOST not in html
    assert local_host in html
    constants.CONFIGURATION['HOST'] = old_host
def test_online_with_page():
    old_host = constants.CONFIGURATION['HOST']
    online()
    page = Page()
    attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
    v1 = [5, 20, 36, 10, 75, 90]
    bar = Bar("柱状图数据堆叠示例")
    bar.add("商家A", attr, v1, is_stack=True)
    page.add(bar)

    html = page._repr_html_()
    assert DEFAULT_HOST in html
    constants.CONFIGURATION['HOST'] = old_host
예제 #5
0
def test_online():
    old_host = constants.CONFIGURATION['HOST']
    online()
    eq_(constants.CONFIGURATION['HOST'], DEFAULT_HOST)
    constants.CONFIGURATION['HOST'] = old_host