summaryrefslogtreecommitdiffstats
path: root/templates/tests/application-lifecycle.jinja2
blob: c9e6242fb25f275b9db076bd63c43704a440c0e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- test:
    timeout:
      minutes: 10
    definitions:
    - repository: https://git.automotivelinux.org/src/qa-testdefinitions
      from: git
      path: test-suites/short-smoke/application-lifecycle.yaml
      name: application-lifecycle
      parameters:
{%- if APPURL != 'automatic' %}
        APPURL: "{{ APPURL }}"
{%- else %}
        APPURL: "{{app_url_base}}/{{ app_changeid }}/{{ app_patchset }}/{{ app_branch }}/{{ sdk_arch }}"
{%- endif %}
ght .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
::-webkit-scrollbar {
    display: none;
}

html {
    height: 100%;
    background-size: cover;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: Arial;
    color: map-get($colors, font);
    margin: 0;

    a {
        color: map-get($colors, font);
        text-decoration: none;
    }

    .top {
        position: absolute;
        top: 0;
        display: flex;
        justify-content: space-between;
        background-color: map-get($colors, background);

        .appsContainer {
            display: flex;
            justify-content: space-between;
            flex: 1 1 0px;
            .button {
                border-color: map-get($colors, grey);
                border-style: solid;
                flex: 1 1 0px;
                text-align: center;
                background-color: map-get($colors, button);
    
                .icon {
                    width: 100%;
                    height: $header_size*0.70;
                    line-height: $header_size*0.70;
                    font-size: 5em;
                }
    
                .label {
                    width: 100%;
                    height: $header_size*0.30;
                    line-height: $header_size*0.30;
                }
            }
        }

        .infoContainer {
            border-color: map-get($colors, grey);
            border-style: solid;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;

            .day {
                text-align: left;
                width: 80%;
                margin: 0 10%;
            }

            .hour {
                font-size: 2em;
                border-bottom: 1px solid map-get($colors, grey);
                width: 80%;
                margin: 0 10% 10px 10%;
                padding: 10px 0;
            }

            .wheater {
                font-size: 1.5em;
                letter-spacing: 2px;
            }
        }

        .statusContainer {
            display: flex;
            justify-content: space-around;
            text-align: center;
            font-size: 2em;
            color: map-get($colors, grey);

            .powered {
                color: map-get($colors, font);
            }

            .connected {
                color: map-get($colors, primary);
            }

            .tethering {
                color: map-get($colors, primary);
                animation: blink-animation 2s linear infinite;
            }

            @keyframes blink-animation {
                0%{opacity: 0;}
                25%{opacity: .5;}
                50%{opacity: 1;}
                75%{opacity: .5;}
                100%{opacity: 0;}
            }
        }
    }

    .bottom {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .log {
        display: none;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1080px;
        background: white;
        font-size: 1.5rem;
    }
}