Пример #1
0
    def test_lain_conf_setuptime_and_killtimeout(self):
        meta_yaml = '''
                    appname: hello
                    build:
                        base: golang
                    web:
                       cmd: test
                    '''
        meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
        hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
        assert hello_conf.procs['web'].setup_time == 0
        assert hello_conf.procs['web'].kill_timeout == 10

        meta_yaml = '''
                    appname: hello
                    build:
                        base: golang
                    web:
                       cmd: test
                       setup_time: 10
                       kill_timeout: 20
                    '''
        hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
        assert hello_conf.procs['web'].setup_time == 10
        assert hello_conf.procs['web'].kill_timeout == 20
Пример #2
0
    def test_prepare_act(self):
        y = LainYaml(ignore_prepare=True)
        assert y.act == False
        y.init_act(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 5
        assert len(y.img_temps) == 5
        assert len(y.img_builders) == 5

        y = LainYaml(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 5
        assert len(y.img_temps) == 5
        assert len(y.img_builders) == 5
Пример #3
0
 def test_vars_accessible(self):
     y = LainYaml(ignore_prepare=True)
     y.load(open(YAML).read())
     assert y.appname == 'hello'
     assert y.build.base == 'golang'
     assert y.build.script == ['( go build -o hello )']
     assert y.release.script == []
     assert y.release.dest_base == 'ubuntu'
     assert len(y.release.copy) == 1
     assert y.release.copy[0]['src'] == 'hello'
     assert y.release.copy[0]['dest'] == '/usr/bin/hello'
     assert y.test.script == ['( go test )']
     assert y.procs['web'].cmd == ['hello']
     assert y.procs['web'].setup_time == 40
     assert y.procs['web'].kill_timeout == 30
Пример #4
0
 def test_vars_accessible(self):
     y = LainYaml(ignore_prepare=True)
     y.load(open(YAML).read())
     assert y.appname == 'hello'
     assert y.build.base == 'golang'
     assert y.build.script == ['( go build -o hello )']
     assert y.release.script == []
     assert y.release.dest_base == 'ubuntu'
     assert len(y.release.copy) == 1
     assert y.release.copy[0]['src'] == 'hello'
     assert y.release.copy[0]['dest'] == '/usr/bin/hello'
     assert y.test.script == ['( go test )']
     assert y.procs['web'].cmd == ['hello']
     assert y.procs['web'].setup_time == 40
     assert y.procs['web'].kill_timeout == 30
Пример #5
0
 def test_lain_conf_dup_proc_name(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 web:
                     cmd: hello
                     port: 80
                     secret_files:
                       - "hello/hello.tex"
                       -  " /secret"
                       -     /hello
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert tuple(hello_conf.procs['web'].env) == ()
     assert tuple(hello_conf.procs['web'].volumes) == ('/lain/logs', )
     assert hello_conf.procs['web'].port[80].port == 80
     assert tuple(hello_conf.procs['web'].secret_files) == (
         '/lain/app/hello/hello.tex', '/lain/app/ /secret', '/hello')
Пример #6
0
    def test_lain_conf_auto_prefix_default_mountpoint_for_proctype_web(self):
        meta_yaml = '''
                    appname: hello
                    build:
                        base: golang
                        script:
                            - echo buildscript1
                            - echo buildscript2
                    release:
                        dest_base: ubuntu
                        copy:
                            - src: hello
                              dest: /usr/bin/hello
                            - src: entry.sh
                              dest: /entry.sh
                    test:
                        script:
                            - go test
                    web:
                        cmd: hello
                        port: 80
                        memory: 64m
                        mountpoint:
                            - /web
                            - a.foo
                            - c.com/y/z
                    web.admin:
                        cmd: admin
                        port: 80
                        mountpoint:
                            - /admin
                    '''
        meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
        hello_conf = LainYaml(data=meta_yaml,
                              meta_version=meta_version,
                              domains=DOMAINS)
        assert hello_conf.appname == 'hello'
        left = set(hello_conf.procs['web'].mountpoint)
        right = {
            'a.foo', 'c.com/y/z',
            '%s.%s' % (hello_conf.appname, DOMAIN),
            '%s.lain' % hello_conf.appname,
            '%s.%s/web' % (hello_conf.appname, DOMAIN),
            '%s.lain/web' % hello_conf.appname
        }
        for d in DOMAINS:
            right.add('%s.%s' % (hello_conf.appname, d))
            right.add('%s.%s/web' % (hello_conf.appname, d))

        assert left == right

        left = set(hello_conf.procs['admin'].mountpoint)
        right = {
            '%s.%s/admin' % (hello_conf.appname, DOMAIN),
            '%s.lain/admin' % hello_conf.appname
        }
        for d in DOMAINS:
            right.add('%s.%s/admin' % (hello_conf.appname, d))

        assert left == right
Пример #7
0
 def test_lain_conf_proc_env_notexists(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 web:
                     cmd: hello
                     port: 80
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert tuple(hello_conf.procs['web'].env) == ()
     assert hello_conf.procs['web'].port[80].port == 80
Пример #8
0
 def test_lain_conf_no_mountpoint_for_not_web_type_proc(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 worker:
                     cmd: worker
                     memory: 64m
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert hello_conf.procs['worker'].memory == 64000000
     assert tuple(hello_conf.procs['worker'].mountpoint) == ()
Пример #9
0
 def test_lain_conf_port_webtype_without_port_meta(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 web:
                     cmd: hello
                     env:
                         - ENV_A=enva
                         - ENV_B=envb
                     volumes:
                         - /data
                         - /var/lib/mysql
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert tuple(hello_conf.procs['web'].env) == ('ENV_A=enva',
                                                   'ENV_B=envb')
     assert hello_conf.procs['web'].port[80].port == 80
Пример #10
0
    def test_prepare_act(self):
        y = LainYaml(ignore_prepare=True)
        assert y.act == False
        try:
            y.init_act(YAML, ignore_prepare=True)
        except Exception:
            pass
        assert y.act == True
        assert len(y.img_names) == 4
        assert len(y.img_temps) == 4
        assert len(y.img_builders) == 4

        y = LainYaml(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 4
        assert len(y.img_temps) == 4
        assert len(y.img_builders) == 4
Пример #11
0
def test_build_section_with_old_prepare(old_prepare_yaml):
    meta_version = '123456-abcdefg'
    app_conf = LainYaml(data=old_prepare_yaml, meta_version=meta_version)
    assert app_conf.build.base == 'sunyi00/centos-python:1.0.0'
    assert tuple(app_conf.build.script) == ('pip install -r pip-req.txt', )
    assert tuple(app_conf.build.build_arg) == (
        'ARG1=arg1',
        'ARG2=arg2',
    )
Пример #12
0
def test_release(release_yaml):
    meta_version = '123456-abcdefg'
    app_conf = LainYaml(data=release_yaml, meta_version=meta_version)
    assert tuple(app_conf.release.copy) == ({
        'dest': '/usr/bin/hello',
        'src': 'hello'
    }, {
        'dest': 'hi',
        'src': 'hi'
    })
Пример #13
0
def test_prepare_act():
    y = LainYaml(lain_yaml_path=YAML, ignore_prepare=True)
    assert y.act is True
    assert len(y.img_names) == 5
    assert len(y.img_temps) == 5
    assert len(y.img_builders) == 5
    assert tuple(y.release.script) == ()
    assert y.release.dest_base == 'ubuntu'
    assert len(y.release.copy) == 1
    assert y.release.copy[0]['src'] == 'hello'
    assert y.release.copy[0]['dest'] == '/usr/bin/hello'
Пример #14
0
def test_vars_accessible():
    y = LainYaml(data=open(YAML).read(), ignore_prepare=True)
    assert y.appname == 'hello'
    assert y.build.base == 'golang'
    assert tuple(y.build.script) == ('go build -o hello', )
    assert tuple(y.release.script) == ()
    assert y.release.dest_base == 'ubuntu'
    assert len(y.release.copy) == 1
    assert y.release.copy[0]['src'] == 'hello'
    assert y.release.copy[0]['dest'] == '/usr/bin/hello'
    assert tuple(y.test.script) == ('go test', )
    assert tuple(y.procs['web'].cmd) == ('hello', )
    assert y.procs['web'].setup_time == 40
    assert y.procs['web'].kill_timeout == 30
Пример #15
0
 def test_lain_conf_without_logs(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                 web:
                     volumes:
                         - /data
                         - /var/lib/mysql
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert tuple(hello_conf.procs['web'].logs) == ()
Пример #16
0
def test_build_section_with_new_prepare(new_prepare_yaml):
    meta_version = '123456-abcdefg'
    app_conf = LainYaml(data=new_prepare_yaml, meta_version=meta_version)
    assert app_conf.build.base == 'sunyi00/centos-python:1.0.0'
    assert tuple(app_conf.build.script) == ('pip install -r pip-req.txt', )
    assert tuple(app_conf.build.build_arg) == (
        'ARG1=arg1',
        'ARG2=arg2',
    )
    assert app_conf.build.prepare.version == "0"
    assert tuple(app_conf.build.prepare.keep) == ('node_modules', 'bundle')
    assert tuple(app_conf.build.prepare.script) == (
        'touch /sbin/modprobe && chmod +x /sbin/modprobe',
        'pip install -r pip-req.txt', 'rm -rf /lain/app/*',
        'ls -1A | grep -v \'\\bnode_modules\\b\' | grep -v \'\\bbundle\\b\' | xargs rm -rf'
    )
Пример #17
0
 def test_lain_conf_logs(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                 web:
                     volumes:
                         - /data
                         - /var/lib/mysql
                     logs:
                         - a.log
                         - b.log
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert hello_conf.appname == 'hello'
     assert tuple(hello_conf.procs['web'].logs) == ('a.log', 'b.log')
     annotation = json.loads(hello_conf.procs['web'].annotation)
     assert annotation['logs'] == ['a.log', 'b.log']
Пример #18
0
    def test_prepare_act(self):
        y = LainYaml(ignore_prepare=True)
        assert y.act == False
        y.init_act(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 5
        assert len(y.img_temps) == 5
        assert len(y.img_builders) == 5

        y = LainYaml(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 5
        assert len(y.img_temps) == 5
        assert len(y.img_builders) == 5
Пример #19
0
 def test_lain_conf_auto_append_default_mountpoint_for_procname_web(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 web:
                     cmd: hello
                     port: 80
                     memory: 64m
                     mountpoint:
                         - a.foo
                         - a.foo/search
                         - b.foo.bar/x
                         - c.com/y/z
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml,
                           meta_version=meta_version,
                           domains=DOMAINS)
     assert hello_conf.appname == 'hello'
     left = set(hello_conf.procs['web'].mountpoint)
     right = {
         'a.foo', 'a.foo/search', 'b.foo.bar/x', 'c.com/y/z',
         '%s.%s' % (hello_conf.appname, DOMAIN),
         '%s.lain' % hello_conf.appname
     }
     right.update(['%s.%s' % (hello_conf.appname, d) for d in DOMAINS])
     assert left == right
Пример #20
0
    def test_prepare_act(self):
        y = LainYaml(ignore_prepare=True)
        assert y.act == False
        try:
            y.init_act(YAML, ignore_prepare=True)
        except Exception:
            pass
        assert y.act == True
        assert len(y.img_names) == 4
        assert len(y.img_temps) == 4
        assert len(y.img_builders) == 4

        y = LainYaml(YAML, ignore_prepare=True)
        assert y.act == True
        assert len(y.img_names) == 4
        assert len(y.img_temps) == 4
        assert len(y.img_builders) == 4
Пример #21
0
def make_lain_yaml(appname=default_appname,
                   build=default_build,
                   release=default_release,
                   test=default_test,
                   web=default_web,
                   procs=default_procs,
                   meta_version=default_meta_version,
                   registry=PRIVATE_REGISTRY,
                   domains=DOMAINS):
    yaml_dic = locals()
    proc = yaml_dic.pop('procs')
    meta_version = yaml_dic.pop('meta_version')
    registry = yaml_dic.pop('registry')
    domains = yaml_dic.pop('domains')
    for k, v in proc.items():
        yaml_dic[k] = v

    data = {k: copy_if_can(v) for k, v in yaml_dic.items() if v is not None}
    conf = LainYaml(data=data,
                    meta_version=meta_version,
                    registry=registry,
                    domains=domains)
    return conf
Пример #22
0
 def test_lain_conf_proc_name(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script: [go build -o hello]
                 release:
                     dest_base: ubuntu
                     copy:
                         - {dest: /usr/bin/hello, src: hello}
                 test:
                     script: [go test]
                 web.web1:
                     cmd: hello
                     port: 80
                     cpu: 1
                     mountpoint:
                         - a.foo
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     hello_conf = LainYaml(data=meta_yaml, meta_version=meta_version)
     hello_conf.appname == 'hello'
     hello_conf.procs['web1'].cpu == 1
     hello_conf.procs['web1'].port[80].port == 80
Пример #23
0
def lain_yaml(ignore_prepare=False):
    if not os.path.exists(LAIN_YAML_PATH):
        error('Missing lain.yaml under current directory')
        sys.exit(1)
    return LainYaml(LAIN_YAML_PATH, ignore_prepare=ignore_prepare)
Пример #24
0
 def test_initialization(self):
     y = LainYaml(YAML, ignore_prepare=True)
     y = LainYaml(ignore_prepare=True)
     y.load(open(YAML).read())
Пример #25
0
def test_empty():
    LainYaml(data='', lain_yaml_path='')
Пример #26
0
 def test_lain_conf_smoke(self):
     meta_yaml = '''
                 appname: hello
                 build:
                     base: golang
                     script:
                         - echo buildscript1
                         - echo buildscript2
                 release:
                     dest_base: ubuntu
                     copy:
                         - src: hello
                           dest: /usr/bin/hello
                         - src: entry.sh
                           dest: /entry.sh
                 test:
                     script:
                         - go test
                 web:
                     cmd: hello
                     port: 80
                     memory: 64m
                     env:
                         - ENV_A=enva
                         - ENV_B=envb
                     volumes:
                         - /data
                         - /var/lib/mysql
                 web.bar:
                     cmd: bar
                     port: 8080
                     mountpoint:
                         - a.com
                         - b.cn/xyz
                 worker.foo:
                     cmd: worker
                     memory: 128m
                 '''
     meta_version = '1428553798.443334-7142797e64bb7b4d057455ef13de6be156ae81cc'
     lc = LainYaml(data=meta_yaml, meta_version=meta_version)
     assert lc.meta_version == meta_version
     web = lc.procs['web']
     assert lc.appname == 'hello'
     assert tuple(web.env) == (
         'ENV_A=enva',
         'ENV_B=envb',
     )
     assert web.memory == 64000000
     assert web.user == ''
     assert web.workdir == ''
     assert web.entrypoint == []
     assert web.port[80].port == 80
     assert web.pod_name == 'hello.web.web'
     foo = lc.procs['foo']
     assert foo.memory == 128000000
     assert tuple(foo.cmd) == ('worker', )
     assert foo.type == ProcType.worker
     bar = lc.procs['bar']
     assert tuple(bar.cmd) == ('bar', )
     assert bar.type == ProcType.web
     assert tuple(bar.mountpoint) == (
         'a.com',
         'b.cn/xyz',
     )
Пример #27
0
 def test_initialization(self):
     y = LainYaml(YAML, ignore_prepare=True)
     y = LainYaml(ignore_prepare=True)
     y.load(open(YAML).read())