SlideShare ist ein Scribd-Unternehmen logo
1 von 57
Downloaden Sie, um offline zu lesen
Axel Rennoch
InSTA 2016, Chicago, 10th April 2016
TEST SYSTEM ARCHITECTURES USING
ADVANCED STANDARDIZED TEST LANGUAGES
2
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
3
 Researcher at Fraunhofer FOKUS in Berlin, Germany
 User of standardized Modelling and Test languages
 LOTOS, SDL/UML
 Tree and Tabular Combined notation (TTCN-1&2)
 TTCN-3 user from the beginning
 Developer for ETSI, 3GPP and industry
 Trainer and consultant
 Research projects and evolution team
AXEL RENNOCH
4
InSTA 2015:
 Keynote by Sigrid Eldh on
 Software Test Architecture
 definition & aspects
InSTA 2016:
 Continuation on Advanced Standardized Test Languages for
 Test System Architecture
 means & examples, user perspective
MOTIVATION
5
maschine
languages
programming
languages
test description
languages
test modelling
languages
CHALLENGES FOR TEST SYSTEMS
Data type
integration
SUT interfaces
(physical distribution)
Logical structure &
distribution
Execution
mapping
6
 Identify SUT access interface points
 Test objectives: functional, load, security?
 Target :
 standardization body (more abstraction, top down) or
 in-house test solution (address concrete tools, bottom up)
 Parallel test components (scalability?)
 Coordination & synchronization (existing frameworks?)
SOME INITIAL QUESTIONS FOR TEST DEVELOPERS
7
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
8
 Testing and Test Control Notation
 Internationally standardized testing language for formally defining
test scenarios. Designed purely for testing
WHAT IS TTCN-3?
testcase Hello_Bob () {
p.send(“How do you do?“);
alt {
[]p.receive(“Fine!“);
{setverdict( pass )};
[else]
{setverdict( inconc )} //Bob asleep!
}
}
9
 One test technology for different tests
 Distributed, platform-independent testing
 Integrated graphical test development,
-documentation and –analysis
 Adaptable, open test environment
 Areas of Testing
 Regression Testing
 Conformance and Functionality Testing
 Interoperability and Integration Testing
 Load/ Stress Testing
IDEA & DESIGN PRINCIPLES OF TTCN-3
10
testcase Hello_Bob () {
p.send(“How do you do?“);
alt {
[]p.receive(“Fine!“);
{setverdict( pass )};
[else]
{setverdict( inconc )} //Bob asleep!
}
}
TTCN-3 EXECUTION
SUT
System
Tester
TTCN-3
API / Network
API / Communication
11
TTCN-3 Test Case
TTCN-3 IS DESIGNED FOR BLACK-BOX TESTING
Port.send(Stimulus) Port.receive(Response)
System Under Test
Port
• Assignment
of a
Test Verdict
12
A TTCN-3 TEST SYSTEM
TE – TTCN-3 Executable
TM – Test Management
TL – Test Logging
CD – Codec
CH – Component Handling
SA – System Adapter
PA – Platform Adapter
SUT – System Under Test
ETSI ES 201 873-1 TTCN-3 Core Language (CL)
ETSI ES 201 873-5 TTCN-3 Runtime Interface (TRI)
ETSI ES 201 873-6 TTCN-3 Control Interfaces (TCI)
TM: Management TL: Logging
TE
CD:Codec
CH:Component
Handling
SA: System Adapter PA: Platform Adapter
TRI
TCI
Test System User
System Under Test (SUT)
13
IMPLEMENTATION
ATS
TE
SUT Communication
+TE
Test System
14
MAJOR LANGUAGE ELEMENTS OF TTCN-3 NOTATION
module definitions
Data Types User defined data types (messages, PDUs,
information elements, …)
Test Data Test data transmitted/expected during test
execution (templates, values)
Test Configuration Definition of the test components and
communication ports
Test Behavior Specification of the dynamic test behavior
Imports Importing definitions from other modules defined in
TTCN-3 or other languages
15
 Industrial use
 Big companies with hundreds of TTCN-3 engineers: Ericsson, Nokia,
Siemens, Motorola
 large distribution among SME
 Standardization bodies
 standardized test suites:
ETSI / 3GPP (LTE!)/ OMA / TETRA and its members
 IMS performance benchmark project:
Intel, HP, BT, FOKUS and others
 Test tool manufacturer:
 Commercial Tektronix, Catapult, Nexus, R&S, Spirent, …
 Certification program based on TTCN-3: e.g. WiMax forum
TTCN-3 DOMAINS: TELECOM
16
Secure UserPlane Location Protocol
Single MTC controls e.g.:
 UlpPort (Lup interface)
 IpcPort (IP configuration)
 smsPort used for SMS
 UtpPort for upper tester commands
 IpiPort (IP information, e.g. release)
 NwcPort: network bearer control,
e.g. handover trigger
 SscPort: satellite simulation control,
e.g. scenario trigger
TEST SYSTEM EXAMPLE 1: OMA SUPL
BSF
SUT
(SUPL
Terminal)
Network Bearer
TCP/UDP/IP
SMS Upper
Tester
Adapter
e.g. text
utp
Upper
Tester
Server
IUT
(SUPL Implementation)
ulp sms
TLS (PSK)
ipi
MTC
ssc
DNS
bsf
TTCN-3
Executable
SUT
Adapter
Satellite
Simulator
ipc dnsnwc
SUT
(SUPL
Terminal)
Network Bearer
TCP/UDP/IP
MT_SMS, WAP_Push, SIP_Push
Upper
Tester
Adapter
e.g. text
utp
Upper
Tester
Server
IUT
(SUPL Implementation)
ulp sms
TLS (PSK)
ipi
MTC
ssc
TTCN-3
Executable
SUT
Adapter
Satellite
Simulator
ipcnwc
17
 E-UTRAN (LTE air interface): 3GPP TS 36.523-3 V12.4.0 (2015-12)
 Each radio access technology (RAT) is hosted by a separate
TTCN-3 parallel component: E-UTRAN, UTRAN, GERAN, others.
 PTCs are controlled by the TTCN-3
main test component (MTC) which:
 is independent from the RAT;
 may host the upper tester for
MMI and AT commands;
TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
Host-PC
TTCN-3
generated code
Codec
Test control, Logging
System Adaptor (SA)
Platform Adaptor (PA)
System
dependent
layers
System Simulator HW
internal interface
UESystem
dependent
layers
Protocol layers
internal interface air interface
18
 Multiple of configurations
 Several PTCs
 Cooperating
 Communicating
TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
19
 Simple scenario
 Reuse of nested component types for MTC, PTCs and TSI
TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
20
 More complex
configuration
 Nested component
types
 Illustration using
Visual Paradigm
TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
21
 Car communication systems
 Daimler, Volkswagen, SiemensVDO
 edutainment bus system (test suite)
 Standardization groups:
 AUTOSAR consortium
 MOST cooperation
 Car-to-car communication
TTCN-3 DOMAINS: AUTOMOTIVE
Telematics Applications in the Cockpit
• Audio (CD / Radio), Video
• Telephone, SMS
• Navigation
• Speech recognition
• User interface for
body electronic
loudness
playCDTitle
Test cases:
MOST Bus
Head Unit
Tester
Speaker
Amplifier
/ Tuner
CD
Changer
22
Medicine
 SiemensMED (image processing)
 HL7 eHealth protocols (Interoperability)
Upcoming E-Health infrastructure for Germany
 High security requirements (e.g. certificates, cryptography)
 Test development prior to SUT availability
 Multiple heterogenous interfaces:
 cardterminals,, card simulations,
 Webservices, OCSP server etc.
TTCN-3 DOMAINS: MEDICINE
23
 Complex
configuration
 Illustration using
IBM Rational
Enterprise
Architect:
- PTC,
- simulators,
- SUT (mock),
- real server,
- adaptation code
TEST SYSTEM EXAMPLE 3: E-HEALTH “KONNEKTOR”
24
 Source STF 276 (IPv6 project)
 Set of TTCN-3 functions to e.g.
 Start and control parallel components
 Exchange synchronization signals between components
 Set of charstring constants for synchronization points
 preambleDone, sync1, sync2
 testbodyDone
 Predefined timers e.g. to avoid deadlocks at synchronization points
 http://www.ttcn-3.org/index.php/development/devlibraries/devlib-libcommon
ETSI FRAMEWORK FOR SYNCHRONISATION
25
Synchronization occurs between parallel
TTCN-3 components (using signals via MTC)
 Sync 1 ensures the completion of senders procedure
 Sync 2 confirms the arrival of a message at receivers side
SYNCHRONIZATION SAMPLES
Sender Receiver
sync 2 
S
U
T
sync 1 
26
 Test suite specific code
 testcase, test (component) functions
 Test suite specific library
 Component types, test configuration, pre/postamble
 Interface/protocol specific library
 SIP, DNS, IPv6 etc.
 Interface/protocol independent library
 synchronizaton
MODULE IMPORT „LAYERING“
Low level:
(High
reusability)
high level:
(low
reusability)
27
 400 subscribers per component Handler
 Component Sender initializes/provides data requests for
load-generator
 5.000 - 10.000 IMS subscribers (per server)
 Up to 250 requests per second (per server)
EXAMPLE 4: IMS BENCHMARK TEST CONFIGURATION
Sender
Component
usr1 usr2 usrN
Handler 1
Component
usrN+1
Handler 2
Component
System Adapter (SUT Interface)
usrN+2 usrN+3
Load Generator
SUT
28
 Study access interface points (Test System Interface)
 Available Test solution plugins?
 Test objectives: functional, load, security?
 Consider synchronization overhead (e.g. ETSI’s LibCommon)
 Consider performance issues (e.g. encoded data preparation)
 Concurrent test components with separated traces & verdicts
(easier failure analysis)
 Consider test tool logging functions
 Improve decomposition using libraries for
 handling single interface types
 Nested component types (to be extended)
 Use modelling tools for the illustration of the TTCN-3 architecture
LESSONS LEARNED WITH TTCN-3
29
29
 TTCN-3 is used in several domains as binding link
between modelling and execution
 Commercial tools do generate
TTCN-3 code for test execution
 lots of academic prototype tools
 Selection of industrial case studies:
e.g. European MIDAS project
 pilots in SOA testing automation (later)
BEYOND TTCN-3: MBT
30
Objective:
 To develop an efficient test platform fulfilling industrial testing requirements
 To execute high-level test models, e.g. UML testing profile

Industrial Testing
Requirements
...
UML 2.0
Testing Profile
System DesignEmbedded
Systems
Avionics
Railway Systems
Mobile
Communication
Automotive
TTCN-3 Test Design
An efficient test platform
Methods, Tools, Guidelines
Test
Results
Approach
TTCN-3 LINK TO UTP
31
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
32
 Standard by the Object Management Group:
Version 1.0 (2004), current version 1.2 (2013), revised draft version 2.0 (Nov 2015)
 Profile of UML version 2:
Industrial standard for (graphical) modeling of Test architectures, behavior and data.
 Conceptual Model:
Test context, cases, objectives, data, configuration, arbitration&verdicts, logs
 UTP library:
predefined types and values (e.g. ISO 25010 Quality model, ISTQB Test levels)
 Extras:
Mapping to TTCN-3 (procedure-based communication only)
UML TESTING PROFILE (UTP)
33
 Standardized mapping of UTP stereotypes to UML metaclasses
TEST CONFIGURATION OVERVIEW
34
 LoginServer
test components
 LoginServer
test configuration
UTP TEST CONFIGURATION EXAMPLE (UTP 2.0 ONLY!)
35
 Domain-independent test modeling for dynamic testing approaches:
 Test environments, test configurations, test case specifications
(including test case derivation), test data specifications/values
 Test evaluation, i.e., managing and visualization of test results
 Integration of best practices
such as keyword-driven testing, equivalence class testing, etc.
 Combination with other UML profiles (e.g., SysML, MARTE, SoaML)
 E.g. to achieve requirements traceability, …
UTP MAJOR USE
36
 Current version 1.2
 less industrial use since version 1.0 ten years ago
 No big test suites
 Only some tooling
 UTP Revision 2.0 is promising
 E.g. covers test configuration
LESSONS LEARNED WITH UTP
37
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
38
 New ETSI Standard
ES 203 119-1 (V1.2.0, 2015-04)
 Fills gap between the high-level
test purposes and TTCN-3
 Simple Text notation with
graphical presentation
TEST DESCRIPTION LANGUAGE
39
 Typed components
and gates
 Timers and variables
 connections among gates
 component roles
TDL TEST CONFIGURATION
40
 Pure testing view
 Compromise between UTP and TTCN-3
 Simple
 Executable
 Not ready to use
LESSONS LEARNED WITH TDL
41
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
42
THE ISTQB FUNDEMANTAL TEST PROCESS
Test Analysis
Test Implementation
Test Design
Test Execution
Test Evaluation
Test Closing Activities
Management
Control
T
C
SUT
T
C
SUT
T
C
SUT
T
C
SUT
T
C
SUT
T
C
SUT
Test Scripts
SUT
Automated test design(MBT)
Automated test execution
(KDT, DDT, TTCN-3)
Test execution
tool
System under
test
Knowledge Test model Test generator Test generator
Model
transformation
Automated test execution is state of the
practice (if ever) in industry
43
ABSTRACTION LEVELS IN TEST AUTOMATION
Test design
activities
Technical test cases
(ABS. LEVEL 2)
Test model
(ABS. LEVEL 3)
Logical test cases
(ABS. LEVEL 3)
Actual implementation
(ABS. LEVEL 0)
Test analysis activities
Adaptation layer
(ABS. LEVEL 2->0)
Test implementation
activities
Test execution activities
requires
SRS
(ABS. LEVEL 4)
TestExecution
System
Testmodelingand
generationtool
Executable test cases
Logical actions the
system can perform
Sequence
diagram, Test
Descriptions
UML Testing
Profile, TDL
TTCN-3, XML,
Excel
Implementation,
TRI, SA, CoDEC
KDT, DDT,
TTCN-3
44
Model is master
- Test design independent from adaptation layer
or test execution system
- No constraint on the test execution system
- Often used in academic
prototypes
TOP-DOWN APPROACH
SRS
(ABS. LEVEL 4)
Adaptation layer
(ABS. LEVEL 2->0)
Technical test cases
(ABS. LEVEL 2)
Test model
(ABS. LEVEL 3)
Recommendation
Feasible for proof-of-concepts,
limited use for industry
45
BOTTOM-UP APPROACH
SRS
(ABS. LEVEL 4)
Test model
(ABS. LEVEL 2)
Adaptation layer
(ABS. LEVEL 2->0)
Technical test cases
(ABS. LEVEL 2)
Adaptation layer is master
- Ensures immediate automated
test exection
- Requires available adaption layer
- Test model derived from
the adaption layer
Recommendation
Only if adaptation layer is
clear for test developers
46
Test Execution
Layer
Test Generation
Layer
TEST AUTOMATION ARCHITECTURE: MIDAS
MIDAS Test Model
FuzzingFunctional Usage-based
Test Definition
Layer
SOA
System
MDTA Framework
MIDAS TPaaS
MIDAS Test Model + Test Cases
TTCN-3 Modules (complete)
exhibits
import
WSDL/XSD
47
 Two approaches have been shown
 Bottom-up approach was realized in MIDAS
 Integration of data types (e.g. WSDL) is challenging
 (Initial) engineering effort can be quite high
LESSONS LEARNT FROM TEST AUTOMATION ARCHITECTURE
48
 Introduction
 Advanced standardized test languages
 TTCN-3
 UML testing profile
 TDL
 Test Automation Architecture
 Conclusions
CONTENTS
49
TTCN-3 UTP TDL
Standardization
body
ETSI, ITU-T OMG ETSI
History Since 1992 Since 2004 Since 2014
Applicability All domains and
testing types
All domains Conformance,
interop
Execution tools
and solutions
+ proprietary
via C-unit
TTCN-3 mapping
in preparation
Current user
groups
Industry,
Research
Academic,
Research
n/a
SUMMARY: OVERVIEW
50
TTCN-3 UTP 2 TDL
Component
extension
+ UML
generalization
- (reuse elements)
Coordination/
synchronization
+via libraries using general
ordering
explicitly
Import of
WSDL, IDL, etc.
(+) proprietary
via SoaML
-
Graphical
Test architecture
- needed! + +
Link to
UML
- + in preparation
SUMMARY: TEST ARCHITECTURE
51
 They significantly increases your system quality.
 You can focus on what to test, not on how.
 They reduce costs and efforts in test system maintenance.
 They are independent of access technology, operating system and
implementation domain
 They support communication between system development and
test department.
 You can count on available, trained and certified experts
GOOD REASONS FOR STANDARDIZED TEST LANGUAGES
52
 TTCN-3, UTP and TDL
- international Standards for testing
- allow abstract definitions for testing
- (partly) accepted in research and industry
- Tool support (still week)
- UML -> UTP/TDL -> TTCN-3
- Test automation need further enhancements
CONCLUSION
53
 Online information
 www.ttcn-3.org
 TTCN-3 User Conference
 2016 in in Budapest, Hungary
 TTCN-3 Standards, Papers, Book
 http://www.ttcn.de/
 Quick Reference
 http://www.blukaktus.com/
 Exercises and Tooling
 research licenses
TTCN-3 SOURCES
54
 Online information
http://utp.omg.org/
 MBT User Conference
 2016 in Budapest, Hungary
 UTP Standards
http://www.omg.org/spec/UTP/
 MDT/UTP Book
 http://www.springer.com
 Exercises and Tooling
 research licenses
UTP SOURCES
55
 Online information
 http://tdl.etsi.org/
 TDL User Conference
 2016 in Budapest, Hungary
 TDL Standards
 http://tdl.etsi.org/index.php/downloads
 Exercises and Tooling
(in preparation)
 https://portal.etsi.org//STF/STFs/STFHomePages/STF492.aspx
TDL SOURCES
56
Thank you
for your attention!
www.fokus.fraunhofer.de
(System Quality Center)
57
Fraunhofer FOKUS
Kaiserin-Augusta-Allee 31
10589 Berlin, Germany
www.fokus.fraunhofer.de
Axel Rennoch
Project Manager
axel.rennoch@fokus.fraunhofer.de
Phone +49 30 3463-7344
CONTACTS
Marc‐Florian Wendland
Senior Researcher
marc‐florian.wendland@fokus.fraunhofer.de
Phone +49 30 3463‐7395

Weitere ähnliche Inhalte

Was ist angesagt?

L kernel-logging-apis-pdf
L kernel-logging-apis-pdfL kernel-logging-apis-pdf
L kernel-logging-apis-pdfSusant Sahani
 
Erlang Message Passing Concurrency, For The Win
Erlang  Message  Passing  Concurrency,  For  The  WinErlang  Message  Passing  Concurrency,  For  The  Win
Erlang Message Passing Concurrency, For The Winl xf
 
Top five reasons why every DV engineer will love the latest systemverilog 201...
Top five reasons why every DV engineer will love the latest systemverilog 201...Top five reasons why every DV engineer will love the latest systemverilog 201...
Top five reasons why every DV engineer will love the latest systemverilog 201...Srinivasan Venkataramanan
 
Ch 3 Assembler in System programming
Ch 3 Assembler in System programming Ch 3 Assembler in System programming
Ch 3 Assembler in System programming Bhatt Balkrishna
 
SysProg-Tutor 03 Unix Shell Script Programming
SysProg-Tutor 03 Unix Shell Script ProgrammingSysProg-Tutor 03 Unix Shell Script Programming
SysProg-Tutor 03 Unix Shell Script ProgrammingWongyos Keardsri
 
05 chapter03 03_memory_structure_slc500_fa16
05 chapter03 03_memory_structure_slc500_fa1605 chapter03 03_memory_structure_slc500_fa16
05 chapter03 03_memory_structure_slc500_fa16John Todora
 
12109 microprocessor & programming
12109 microprocessor & programming12109 microprocessor & programming
12109 microprocessor & programmingGaurang Thakar
 
2004 snug-boston-presentation system-verilog_fifo_channel
2004 snug-boston-presentation system-verilog_fifo_channel2004 snug-boston-presentation system-verilog_fifo_channel
2004 snug-boston-presentation system-verilog_fifo_channelAkhilReddy Sankati
 
Introduction to Assembly Language
Introduction to Assembly Language Introduction to Assembly Language
Introduction to Assembly Language ApekshaShinde6
 
Filter designandanalysisusingmicrowaveoffice
Filter designandanalysisusingmicrowaveofficeFilter designandanalysisusingmicrowaveoffice
Filter designandanalysisusingmicrowaveofficeEmad S. Ahmed
 
C300 communications and Batch presentation
C300 communications and Batch presentationC300 communications and Batch presentation
C300 communications and Batch presentationMarc Schuilwerve
 

Was ist angesagt? (20)

L kernel-logging-apis-pdf
L kernel-logging-apis-pdfL kernel-logging-apis-pdf
L kernel-logging-apis-pdf
 
Erlang Message Passing Concurrency, For The Win
Erlang  Message  Passing  Concurrency,  For  The  WinErlang  Message  Passing  Concurrency,  For  The  Win
Erlang Message Passing Concurrency, For The Win
 
Top five reasons why every DV engineer will love the latest systemverilog 201...
Top five reasons why every DV engineer will love the latest systemverilog 201...Top five reasons why every DV engineer will love the latest systemverilog 201...
Top five reasons why every DV engineer will love the latest systemverilog 201...
 
Loader
LoaderLoader
Loader
 
Ch 3 Assembler in System programming
Ch 3 Assembler in System programming Ch 3 Assembler in System programming
Ch 3 Assembler in System programming
 
SysProg-Tutor 03 Unix Shell Script Programming
SysProg-Tutor 03 Unix Shell Script ProgrammingSysProg-Tutor 03 Unix Shell Script Programming
SysProg-Tutor 03 Unix Shell Script Programming
 
05 chapter03 03_memory_structure_slc500_fa16
05 chapter03 03_memory_structure_slc500_fa1605 chapter03 03_memory_structure_slc500_fa16
05 chapter03 03_memory_structure_slc500_fa16
 
12109 microprocessor & programming
12109 microprocessor & programming12109 microprocessor & programming
12109 microprocessor & programming
 
2004 snug-boston-presentation system-verilog_fifo_channel
2004 snug-boston-presentation system-verilog_fifo_channel2004 snug-boston-presentation system-verilog_fifo_channel
2004 snug-boston-presentation system-verilog_fifo_channel
 
Macro-processor
Macro-processorMacro-processor
Macro-processor
 
Assembler
AssemblerAssembler
Assembler
 
Loaders
LoadersLoaders
Loaders
 
Introduction to Assembly Language
Introduction to Assembly Language Introduction to Assembly Language
Introduction to Assembly Language
 
Mvs commands
Mvs commandsMvs commands
Mvs commands
 
Assembly fundamentals
Assembly fundamentalsAssembly fundamentals
Assembly fundamentals
 
19
1919
19
 
Assembler (2)
Assembler (2)Assembler (2)
Assembler (2)
 
Mp &mc programs
Mp &mc programsMp &mc programs
Mp &mc programs
 
Filter designandanalysisusingmicrowaveoffice
Filter designandanalysisusingmicrowaveofficeFilter designandanalysisusingmicrowaveoffice
Filter designandanalysisusingmicrowaveoffice
 
C300 communications and Batch presentation
C300 communications and Batch presentationC300 communications and Batch presentation
C300 communications and Batch presentation
 

Andere mochten auch

Challenges and solutions in mobile and cloud computing testing - ZANEC
Challenges and solutions in mobile and cloud computing testing  - ZANECChallenges and solutions in mobile and cloud computing testing  - ZANEC
Challenges and solutions in mobile and cloud computing testing - ZANECSatya Kaliki
 
Connected Car Services - Generalizing and Simplifying Telematics
Connected Car Services - Generalizing and Simplifying TelematicsConnected Car Services - Generalizing and Simplifying Telematics
Connected Car Services - Generalizing and Simplifying TelematicsToralf Richter
 
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...Leon Anavi
 
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...Integrated Language Definition Testing: Enabling Test-Driven Language Develop...
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...lennartkats
 
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)Leon Anavi
 
Over-the-air (OTA) updates and the Connected car
Over-the-air (OTA) updates and the Connected carOver-the-air (OTA) updates and the Connected car
Over-the-air (OTA) updates and the Connected carPratik Desai, PhD
 
Open Source for automotive developed in the open becomes real. GDP
Open Source for automotive developed in the open becomes real. GDPOpen Source for automotive developed in the open becomes real. GDP
Open Source for automotive developed in the open becomes real. GDPAgustin Benito Bethencourt
 
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...Sage HR
 

Andere mochten auch (9)

OTA
OTAOTA
OTA
 
Challenges and solutions in mobile and cloud computing testing - ZANEC
Challenges and solutions in mobile and cloud computing testing  - ZANECChallenges and solutions in mobile and cloud computing testing  - ZANEC
Challenges and solutions in mobile and cloud computing testing - ZANEC
 
Connected Car Services - Generalizing and Simplifying Telematics
Connected Car Services - Generalizing and Simplifying TelematicsConnected Car Services - Generalizing and Simplifying Telematics
Connected Car Services - Generalizing and Simplifying Telematics
 
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...
Contributing to Automotive Grade Linux (AGL) and GENIVI Development Platform ...
 
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...Integrated Language Definition Testing: Enabling Test-Driven Language Develop...
Integrated Language Definition Testing: Enabling Test-Driven Language Develop...
 
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)
Software, Over the Air (SOTA) for Automotive Grade Linux (AGL)
 
Over-the-air (OTA) updates and the Connected car
Over-the-air (OTA) updates and the Connected carOver-the-air (OTA) updates and the Connected car
Over-the-air (OTA) updates and the Connected car
 
Open Source for automotive developed in the open becomes real. GDP
Open Source for automotive developed in the open becomes real. GDPOpen Source for automotive developed in the open becomes real. GDP
Open Source for automotive developed in the open becomes real. GDP
 
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...
How Volkswagen Mocked Corporate Social Responsibility: “Diesel Gate” Outs Sus...
 

Ähnlich wie Test System Architectures using Advanced Standardized Test Languages

project introduction
project introductionproject introduction
project introductionstinmon
 
Martin Gijsen - Effective Test Automation a la Carte
Martin Gijsen -  Effective Test Automation a la Carte Martin Gijsen -  Effective Test Automation a la Carte
Martin Gijsen - Effective Test Automation a la Carte TEST Huddle
 
Presentation on Behavioral Synthesis & SystemC
Presentation on Behavioral Synthesis & SystemCPresentation on Behavioral Synthesis & SystemC
Presentation on Behavioral Synthesis & SystemCMukit Ahmed Chowdhury
 
Michael_Joshua_Validation
Michael_Joshua_ValidationMichael_Joshua_Validation
Michael_Joshua_ValidationMichaelJoshua
 
Summarizing Software API Usage Examples Using Clustering Techniques
Summarizing Software API Usage Examples Using Clustering TechniquesSummarizing Software API Usage Examples Using Clustering Techniques
Summarizing Software API Usage Examples Using Clustering TechniquesNikos Katirtzis
 
"Building intuitive command-line interfaces in .NET", Alex Thissen
"Building intuitive command-line interfaces in .NET", Alex Thissen"Building intuitive command-line interfaces in .NET", Alex Thissen
"Building intuitive command-line interfaces in .NET", Alex ThissenFwdays
 
Functional and non-functional testing with IoT-Testware
Functional and non-functional testing with IoT-TestwareFunctional and non-functional testing with IoT-Testware
Functional and non-functional testing with IoT-TestwareAxel Rennoch
 
Srivaishnavi Sivagnanam_resume_final - CA_new
Srivaishnavi Sivagnanam_resume_final - CA_newSrivaishnavi Sivagnanam_resume_final - CA_new
Srivaishnavi Sivagnanam_resume_final - CA_newsrivaishnavi sivagnanam
 
Challenges in Using UVM at SoC Level
Challenges in Using UVM at SoC LevelChallenges in Using UVM at SoC Level
Challenges in Using UVM at SoC LevelDVClub
 
14-IntegrationTesting_in_software_testing .pdf
14-IntegrationTesting_in_software_testing .pdf14-IntegrationTesting_in_software_testing .pdf
14-IntegrationTesting_in_software_testing .pdfSATHYANARAYANAKB
 
09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_enconfidencial
 
AUTOMATED TESTING USING PYTHON (ATE)
AUTOMATED TESTING USING PYTHON (ATE)AUTOMATED TESTING USING PYTHON (ATE)
AUTOMATED TESTING USING PYTHON (ATE)Yuvaraja Ravi
 
System verilog verification building blocks
System verilog verification building blocksSystem verilog verification building blocks
System verilog verification building blocksNirav Desai
 
homeandbuildingautomationsystems.pptx
homeandbuildingautomationsystems.pptxhomeandbuildingautomationsystems.pptx
homeandbuildingautomationsystems.pptxSharanabasappaDegoan
 
group11_DNAA:protocol stack and addressing
group11_DNAA:protocol stack and addressinggroup11_DNAA:protocol stack and addressing
group11_DNAA:protocol stack and addressingAnitha Selvan
 
Driver Configuration Webinar
Driver Configuration WebinarDriver Configuration Webinar
Driver Configuration WebinarAVEVA
 
One integrated platform for all activities,from engineering to production
One integrated platform for all activities,from engineering to productionOne integrated platform for all activities,from engineering to production
One integrated platform for all activities,from engineering to productionS Jebaraj
 
design-compiler.pdf
design-compiler.pdfdesign-compiler.pdf
design-compiler.pdfFrangoCamila
 
Design and development of automated tests for the IoT
Design and development of automated tests for the IoTDesign and development of automated tests for the IoT
Design and development of automated tests for the IoTAxel Rennoch
 
Software Architecture Styles
Software Architecture StylesSoftware Architecture Styles
Software Architecture StylesHenry Muccini
 

Ähnlich wie Test System Architectures using Advanced Standardized Test Languages (20)

project introduction
project introductionproject introduction
project introduction
 
Martin Gijsen - Effective Test Automation a la Carte
Martin Gijsen -  Effective Test Automation a la Carte Martin Gijsen -  Effective Test Automation a la Carte
Martin Gijsen - Effective Test Automation a la Carte
 
Presentation on Behavioral Synthesis & SystemC
Presentation on Behavioral Synthesis & SystemCPresentation on Behavioral Synthesis & SystemC
Presentation on Behavioral Synthesis & SystemC
 
Michael_Joshua_Validation
Michael_Joshua_ValidationMichael_Joshua_Validation
Michael_Joshua_Validation
 
Summarizing Software API Usage Examples Using Clustering Techniques
Summarizing Software API Usage Examples Using Clustering TechniquesSummarizing Software API Usage Examples Using Clustering Techniques
Summarizing Software API Usage Examples Using Clustering Techniques
 
"Building intuitive command-line interfaces in .NET", Alex Thissen
"Building intuitive command-line interfaces in .NET", Alex Thissen"Building intuitive command-line interfaces in .NET", Alex Thissen
"Building intuitive command-line interfaces in .NET", Alex Thissen
 
Functional and non-functional testing with IoT-Testware
Functional and non-functional testing with IoT-TestwareFunctional and non-functional testing with IoT-Testware
Functional and non-functional testing with IoT-Testware
 
Srivaishnavi Sivagnanam_resume_final - CA_new
Srivaishnavi Sivagnanam_resume_final - CA_newSrivaishnavi Sivagnanam_resume_final - CA_new
Srivaishnavi Sivagnanam_resume_final - CA_new
 
Challenges in Using UVM at SoC Level
Challenges in Using UVM at SoC LevelChallenges in Using UVM at SoC Level
Challenges in Using UVM at SoC Level
 
14-IntegrationTesting_in_software_testing .pdf
14-IntegrationTesting_in_software_testing .pdf14-IntegrationTesting_in_software_testing .pdf
14-IntegrationTesting_in_software_testing .pdf
 
09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en
 
AUTOMATED TESTING USING PYTHON (ATE)
AUTOMATED TESTING USING PYTHON (ATE)AUTOMATED TESTING USING PYTHON (ATE)
AUTOMATED TESTING USING PYTHON (ATE)
 
System verilog verification building blocks
System verilog verification building blocksSystem verilog verification building blocks
System verilog verification building blocks
 
homeandbuildingautomationsystems.pptx
homeandbuildingautomationsystems.pptxhomeandbuildingautomationsystems.pptx
homeandbuildingautomationsystems.pptx
 
group11_DNAA:protocol stack and addressing
group11_DNAA:protocol stack and addressinggroup11_DNAA:protocol stack and addressing
group11_DNAA:protocol stack and addressing
 
Driver Configuration Webinar
Driver Configuration WebinarDriver Configuration Webinar
Driver Configuration Webinar
 
One integrated platform for all activities,from engineering to production
One integrated platform for all activities,from engineering to productionOne integrated platform for all activities,from engineering to production
One integrated platform for all activities,from engineering to production
 
design-compiler.pdf
design-compiler.pdfdesign-compiler.pdf
design-compiler.pdf
 
Design and development of automated tests for the IoT
Design and development of automated tests for the IoTDesign and development of automated tests for the IoT
Design and development of automated tests for the IoT
 
Software Architecture Styles
Software Architecture StylesSoftware Architecture Styles
Software Architecture Styles
 

Mehr von Axel Rennoch

ETSI TC MTS Contribution to Testing in IoT and Edge Computing
ETSI TC MTS Contribution to Testing in IoT and Edge ComputingETSI TC MTS Contribution to Testing in IoT and Edge Computing
ETSI TC MTS Contribution to Testing in IoT and Edge ComputingAxel Rennoch
 
Towards a certification scheme for IoT security evaluation
Towards a certification scheme for IoT security evaluationTowards a certification scheme for IoT security evaluation
Towards a certification scheme for IoT security evaluationAxel Rennoch
 
Testing Challenges and Approaches in Edge Computing
Testing Challenges and Approaches in Edge ComputingTesting Challenges and Approaches in Edge Computing
Testing Challenges and Approaches in Edge ComputingAxel Rennoch
 
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONS
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONSUSING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONS
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONSAxel Rennoch
 
Edge Computing Standardisation and Initiatives
Edge Computing Standardisation and InitiativesEdge Computing Standardisation and Initiatives
Edge Computing Standardisation and InitiativesAxel Rennoch
 
Test Execution Infrastructure for IoT Quality analysis
Test Execution Infrastructure for IoT Quality analysisTest Execution Infrastructure for IoT Quality analysis
Test Execution Infrastructure for IoT Quality analysisAxel Rennoch
 
Model-based security testing
Model-based security testingModel-based security testing
Model-based security testingAxel Rennoch
 

Mehr von Axel Rennoch (7)

ETSI TC MTS Contribution to Testing in IoT and Edge Computing
ETSI TC MTS Contribution to Testing in IoT and Edge ComputingETSI TC MTS Contribution to Testing in IoT and Edge Computing
ETSI TC MTS Contribution to Testing in IoT and Edge Computing
 
Towards a certification scheme for IoT security evaluation
Towards a certification scheme for IoT security evaluationTowards a certification scheme for IoT security evaluation
Towards a certification scheme for IoT security evaluation
 
Testing Challenges and Approaches in Edge Computing
Testing Challenges and Approaches in Edge ComputingTesting Challenges and Approaches in Edge Computing
Testing Challenges and Approaches in Edge Computing
 
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONS
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONSUSING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONS
USING TDL FOR STANDARDISED TEST PURPOSE DEFINITIONS
 
Edge Computing Standardisation and Initiatives
Edge Computing Standardisation and InitiativesEdge Computing Standardisation and Initiatives
Edge Computing Standardisation and Initiatives
 
Test Execution Infrastructure for IoT Quality analysis
Test Execution Infrastructure for IoT Quality analysisTest Execution Infrastructure for IoT Quality analysis
Test Execution Infrastructure for IoT Quality analysis
 
Model-based security testing
Model-based security testingModel-based security testing
Model-based security testing
 

Kürzlich hochgeladen

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 

Kürzlich hochgeladen (20)

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 

Test System Architectures using Advanced Standardized Test Languages

  • 1. Axel Rennoch InSTA 2016, Chicago, 10th April 2016 TEST SYSTEM ARCHITECTURES USING ADVANCED STANDARDIZED TEST LANGUAGES
  • 2. 2  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 3. 3  Researcher at Fraunhofer FOKUS in Berlin, Germany  User of standardized Modelling and Test languages  LOTOS, SDL/UML  Tree and Tabular Combined notation (TTCN-1&2)  TTCN-3 user from the beginning  Developer for ETSI, 3GPP and industry  Trainer and consultant  Research projects and evolution team AXEL RENNOCH
  • 4. 4 InSTA 2015:  Keynote by Sigrid Eldh on  Software Test Architecture  definition & aspects InSTA 2016:  Continuation on Advanced Standardized Test Languages for  Test System Architecture  means & examples, user perspective MOTIVATION
  • 5. 5 maschine languages programming languages test description languages test modelling languages CHALLENGES FOR TEST SYSTEMS Data type integration SUT interfaces (physical distribution) Logical structure & distribution Execution mapping
  • 6. 6  Identify SUT access interface points  Test objectives: functional, load, security?  Target :  standardization body (more abstraction, top down) or  in-house test solution (address concrete tools, bottom up)  Parallel test components (scalability?)  Coordination & synchronization (existing frameworks?) SOME INITIAL QUESTIONS FOR TEST DEVELOPERS
  • 7. 7  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 8. 8  Testing and Test Control Notation  Internationally standardized testing language for formally defining test scenarios. Designed purely for testing WHAT IS TTCN-3? testcase Hello_Bob () { p.send(“How do you do?“); alt { []p.receive(“Fine!“); {setverdict( pass )}; [else] {setverdict( inconc )} //Bob asleep! } }
  • 9. 9  One test technology for different tests  Distributed, platform-independent testing  Integrated graphical test development, -documentation and –analysis  Adaptable, open test environment  Areas of Testing  Regression Testing  Conformance and Functionality Testing  Interoperability and Integration Testing  Load/ Stress Testing IDEA & DESIGN PRINCIPLES OF TTCN-3
  • 10. 10 testcase Hello_Bob () { p.send(“How do you do?“); alt { []p.receive(“Fine!“); {setverdict( pass )}; [else] {setverdict( inconc )} //Bob asleep! } } TTCN-3 EXECUTION SUT System Tester TTCN-3 API / Network API / Communication
  • 11. 11 TTCN-3 Test Case TTCN-3 IS DESIGNED FOR BLACK-BOX TESTING Port.send(Stimulus) Port.receive(Response) System Under Test Port • Assignment of a Test Verdict
  • 12. 12 A TTCN-3 TEST SYSTEM TE – TTCN-3 Executable TM – Test Management TL – Test Logging CD – Codec CH – Component Handling SA – System Adapter PA – Platform Adapter SUT – System Under Test ETSI ES 201 873-1 TTCN-3 Core Language (CL) ETSI ES 201 873-5 TTCN-3 Runtime Interface (TRI) ETSI ES 201 873-6 TTCN-3 Control Interfaces (TCI) TM: Management TL: Logging TE CD:Codec CH:Component Handling SA: System Adapter PA: Platform Adapter TRI TCI Test System User System Under Test (SUT)
  • 14. 14 MAJOR LANGUAGE ELEMENTS OF TTCN-3 NOTATION module definitions Data Types User defined data types (messages, PDUs, information elements, …) Test Data Test data transmitted/expected during test execution (templates, values) Test Configuration Definition of the test components and communication ports Test Behavior Specification of the dynamic test behavior Imports Importing definitions from other modules defined in TTCN-3 or other languages
  • 15. 15  Industrial use  Big companies with hundreds of TTCN-3 engineers: Ericsson, Nokia, Siemens, Motorola  large distribution among SME  Standardization bodies  standardized test suites: ETSI / 3GPP (LTE!)/ OMA / TETRA and its members  IMS performance benchmark project: Intel, HP, BT, FOKUS and others  Test tool manufacturer:  Commercial Tektronix, Catapult, Nexus, R&S, Spirent, …  Certification program based on TTCN-3: e.g. WiMax forum TTCN-3 DOMAINS: TELECOM
  • 16. 16 Secure UserPlane Location Protocol Single MTC controls e.g.:  UlpPort (Lup interface)  IpcPort (IP configuration)  smsPort used for SMS  UtpPort for upper tester commands  IpiPort (IP information, e.g. release)  NwcPort: network bearer control, e.g. handover trigger  SscPort: satellite simulation control, e.g. scenario trigger TEST SYSTEM EXAMPLE 1: OMA SUPL BSF SUT (SUPL Terminal) Network Bearer TCP/UDP/IP SMS Upper Tester Adapter e.g. text utp Upper Tester Server IUT (SUPL Implementation) ulp sms TLS (PSK) ipi MTC ssc DNS bsf TTCN-3 Executable SUT Adapter Satellite Simulator ipc dnsnwc SUT (SUPL Terminal) Network Bearer TCP/UDP/IP MT_SMS, WAP_Push, SIP_Push Upper Tester Adapter e.g. text utp Upper Tester Server IUT (SUPL Implementation) ulp sms TLS (PSK) ipi MTC ssc TTCN-3 Executable SUT Adapter Satellite Simulator ipcnwc
  • 17. 17  E-UTRAN (LTE air interface): 3GPP TS 36.523-3 V12.4.0 (2015-12)  Each radio access technology (RAT) is hosted by a separate TTCN-3 parallel component: E-UTRAN, UTRAN, GERAN, others.  PTCs are controlled by the TTCN-3 main test component (MTC) which:  is independent from the RAT;  may host the upper tester for MMI and AT commands; TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING Host-PC TTCN-3 generated code Codec Test control, Logging System Adaptor (SA) Platform Adaptor (PA) System dependent layers System Simulator HW internal interface UESystem dependent layers Protocol layers internal interface air interface
  • 18. 18  Multiple of configurations  Several PTCs  Cooperating  Communicating TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
  • 19. 19  Simple scenario  Reuse of nested component types for MTC, PTCs and TSI TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
  • 20. 20  More complex configuration  Nested component types  Illustration using Visual Paradigm TEST SYSTEM EXAMPLE 2: 3GPP UE TESTING
  • 21. 21  Car communication systems  Daimler, Volkswagen, SiemensVDO  edutainment bus system (test suite)  Standardization groups:  AUTOSAR consortium  MOST cooperation  Car-to-car communication TTCN-3 DOMAINS: AUTOMOTIVE Telematics Applications in the Cockpit • Audio (CD / Radio), Video • Telephone, SMS • Navigation • Speech recognition • User interface for body electronic loudness playCDTitle Test cases: MOST Bus Head Unit Tester Speaker Amplifier / Tuner CD Changer
  • 22. 22 Medicine  SiemensMED (image processing)  HL7 eHealth protocols (Interoperability) Upcoming E-Health infrastructure for Germany  High security requirements (e.g. certificates, cryptography)  Test development prior to SUT availability  Multiple heterogenous interfaces:  cardterminals,, card simulations,  Webservices, OCSP server etc. TTCN-3 DOMAINS: MEDICINE
  • 23. 23  Complex configuration  Illustration using IBM Rational Enterprise Architect: - PTC, - simulators, - SUT (mock), - real server, - adaptation code TEST SYSTEM EXAMPLE 3: E-HEALTH “KONNEKTOR”
  • 24. 24  Source STF 276 (IPv6 project)  Set of TTCN-3 functions to e.g.  Start and control parallel components  Exchange synchronization signals between components  Set of charstring constants for synchronization points  preambleDone, sync1, sync2  testbodyDone  Predefined timers e.g. to avoid deadlocks at synchronization points  http://www.ttcn-3.org/index.php/development/devlibraries/devlib-libcommon ETSI FRAMEWORK FOR SYNCHRONISATION
  • 25. 25 Synchronization occurs between parallel TTCN-3 components (using signals via MTC)  Sync 1 ensures the completion of senders procedure  Sync 2 confirms the arrival of a message at receivers side SYNCHRONIZATION SAMPLES Sender Receiver sync 2  S U T sync 1 
  • 26. 26  Test suite specific code  testcase, test (component) functions  Test suite specific library  Component types, test configuration, pre/postamble  Interface/protocol specific library  SIP, DNS, IPv6 etc.  Interface/protocol independent library  synchronizaton MODULE IMPORT „LAYERING“ Low level: (High reusability) high level: (low reusability)
  • 27. 27  400 subscribers per component Handler  Component Sender initializes/provides data requests for load-generator  5.000 - 10.000 IMS subscribers (per server)  Up to 250 requests per second (per server) EXAMPLE 4: IMS BENCHMARK TEST CONFIGURATION Sender Component usr1 usr2 usrN Handler 1 Component usrN+1 Handler 2 Component System Adapter (SUT Interface) usrN+2 usrN+3 Load Generator SUT
  • 28. 28  Study access interface points (Test System Interface)  Available Test solution plugins?  Test objectives: functional, load, security?  Consider synchronization overhead (e.g. ETSI’s LibCommon)  Consider performance issues (e.g. encoded data preparation)  Concurrent test components with separated traces & verdicts (easier failure analysis)  Consider test tool logging functions  Improve decomposition using libraries for  handling single interface types  Nested component types (to be extended)  Use modelling tools for the illustration of the TTCN-3 architecture LESSONS LEARNED WITH TTCN-3
  • 29. 29 29  TTCN-3 is used in several domains as binding link between modelling and execution  Commercial tools do generate TTCN-3 code for test execution  lots of academic prototype tools  Selection of industrial case studies: e.g. European MIDAS project  pilots in SOA testing automation (later) BEYOND TTCN-3: MBT
  • 30. 30 Objective:  To develop an efficient test platform fulfilling industrial testing requirements  To execute high-level test models, e.g. UML testing profile  Industrial Testing Requirements ... UML 2.0 Testing Profile System DesignEmbedded Systems Avionics Railway Systems Mobile Communication Automotive TTCN-3 Test Design An efficient test platform Methods, Tools, Guidelines Test Results Approach TTCN-3 LINK TO UTP
  • 31. 31  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 32. 32  Standard by the Object Management Group: Version 1.0 (2004), current version 1.2 (2013), revised draft version 2.0 (Nov 2015)  Profile of UML version 2: Industrial standard for (graphical) modeling of Test architectures, behavior and data.  Conceptual Model: Test context, cases, objectives, data, configuration, arbitration&verdicts, logs  UTP library: predefined types and values (e.g. ISO 25010 Quality model, ISTQB Test levels)  Extras: Mapping to TTCN-3 (procedure-based communication only) UML TESTING PROFILE (UTP)
  • 33. 33  Standardized mapping of UTP stereotypes to UML metaclasses TEST CONFIGURATION OVERVIEW
  • 34. 34  LoginServer test components  LoginServer test configuration UTP TEST CONFIGURATION EXAMPLE (UTP 2.0 ONLY!)
  • 35. 35  Domain-independent test modeling for dynamic testing approaches:  Test environments, test configurations, test case specifications (including test case derivation), test data specifications/values  Test evaluation, i.e., managing and visualization of test results  Integration of best practices such as keyword-driven testing, equivalence class testing, etc.  Combination with other UML profiles (e.g., SysML, MARTE, SoaML)  E.g. to achieve requirements traceability, … UTP MAJOR USE
  • 36. 36  Current version 1.2  less industrial use since version 1.0 ten years ago  No big test suites  Only some tooling  UTP Revision 2.0 is promising  E.g. covers test configuration LESSONS LEARNED WITH UTP
  • 37. 37  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 38. 38  New ETSI Standard ES 203 119-1 (V1.2.0, 2015-04)  Fills gap between the high-level test purposes and TTCN-3  Simple Text notation with graphical presentation TEST DESCRIPTION LANGUAGE
  • 39. 39  Typed components and gates  Timers and variables  connections among gates  component roles TDL TEST CONFIGURATION
  • 40. 40  Pure testing view  Compromise between UTP and TTCN-3  Simple  Executable  Not ready to use LESSONS LEARNED WITH TDL
  • 41. 41  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 42. 42 THE ISTQB FUNDEMANTAL TEST PROCESS Test Analysis Test Implementation Test Design Test Execution Test Evaluation Test Closing Activities Management Control T C SUT T C SUT T C SUT T C SUT T C SUT T C SUT Test Scripts SUT Automated test design(MBT) Automated test execution (KDT, DDT, TTCN-3) Test execution tool System under test Knowledge Test model Test generator Test generator Model transformation Automated test execution is state of the practice (if ever) in industry
  • 43. 43 ABSTRACTION LEVELS IN TEST AUTOMATION Test design activities Technical test cases (ABS. LEVEL 2) Test model (ABS. LEVEL 3) Logical test cases (ABS. LEVEL 3) Actual implementation (ABS. LEVEL 0) Test analysis activities Adaptation layer (ABS. LEVEL 2->0) Test implementation activities Test execution activities requires SRS (ABS. LEVEL 4) TestExecution System Testmodelingand generationtool Executable test cases Logical actions the system can perform Sequence diagram, Test Descriptions UML Testing Profile, TDL TTCN-3, XML, Excel Implementation, TRI, SA, CoDEC KDT, DDT, TTCN-3
  • 44. 44 Model is master - Test design independent from adaptation layer or test execution system - No constraint on the test execution system - Often used in academic prototypes TOP-DOWN APPROACH SRS (ABS. LEVEL 4) Adaptation layer (ABS. LEVEL 2->0) Technical test cases (ABS. LEVEL 2) Test model (ABS. LEVEL 3) Recommendation Feasible for proof-of-concepts, limited use for industry
  • 45. 45 BOTTOM-UP APPROACH SRS (ABS. LEVEL 4) Test model (ABS. LEVEL 2) Adaptation layer (ABS. LEVEL 2->0) Technical test cases (ABS. LEVEL 2) Adaptation layer is master - Ensures immediate automated test exection - Requires available adaption layer - Test model derived from the adaption layer Recommendation Only if adaptation layer is clear for test developers
  • 46. 46 Test Execution Layer Test Generation Layer TEST AUTOMATION ARCHITECTURE: MIDAS MIDAS Test Model FuzzingFunctional Usage-based Test Definition Layer SOA System MDTA Framework MIDAS TPaaS MIDAS Test Model + Test Cases TTCN-3 Modules (complete) exhibits import WSDL/XSD
  • 47. 47  Two approaches have been shown  Bottom-up approach was realized in MIDAS  Integration of data types (e.g. WSDL) is challenging  (Initial) engineering effort can be quite high LESSONS LEARNT FROM TEST AUTOMATION ARCHITECTURE
  • 48. 48  Introduction  Advanced standardized test languages  TTCN-3  UML testing profile  TDL  Test Automation Architecture  Conclusions CONTENTS
  • 49. 49 TTCN-3 UTP TDL Standardization body ETSI, ITU-T OMG ETSI History Since 1992 Since 2004 Since 2014 Applicability All domains and testing types All domains Conformance, interop Execution tools and solutions + proprietary via C-unit TTCN-3 mapping in preparation Current user groups Industry, Research Academic, Research n/a SUMMARY: OVERVIEW
  • 50. 50 TTCN-3 UTP 2 TDL Component extension + UML generalization - (reuse elements) Coordination/ synchronization +via libraries using general ordering explicitly Import of WSDL, IDL, etc. (+) proprietary via SoaML - Graphical Test architecture - needed! + + Link to UML - + in preparation SUMMARY: TEST ARCHITECTURE
  • 51. 51  They significantly increases your system quality.  You can focus on what to test, not on how.  They reduce costs and efforts in test system maintenance.  They are independent of access technology, operating system and implementation domain  They support communication between system development and test department.  You can count on available, trained and certified experts GOOD REASONS FOR STANDARDIZED TEST LANGUAGES
  • 52. 52  TTCN-3, UTP and TDL - international Standards for testing - allow abstract definitions for testing - (partly) accepted in research and industry - Tool support (still week) - UML -> UTP/TDL -> TTCN-3 - Test automation need further enhancements CONCLUSION
  • 53. 53  Online information  www.ttcn-3.org  TTCN-3 User Conference  2016 in in Budapest, Hungary  TTCN-3 Standards, Papers, Book  http://www.ttcn.de/  Quick Reference  http://www.blukaktus.com/  Exercises and Tooling  research licenses TTCN-3 SOURCES
  • 54. 54  Online information http://utp.omg.org/  MBT User Conference  2016 in Budapest, Hungary  UTP Standards http://www.omg.org/spec/UTP/  MDT/UTP Book  http://www.springer.com  Exercises and Tooling  research licenses UTP SOURCES
  • 55. 55  Online information  http://tdl.etsi.org/  TDL User Conference  2016 in Budapest, Hungary  TDL Standards  http://tdl.etsi.org/index.php/downloads  Exercises and Tooling (in preparation)  https://portal.etsi.org//STF/STFs/STFHomePages/STF492.aspx TDL SOURCES
  • 56. 56 Thank you for your attention! www.fokus.fraunhofer.de (System Quality Center)
  • 57. 57 Fraunhofer FOKUS Kaiserin-Augusta-Allee 31 10589 Berlin, Germany www.fokus.fraunhofer.de Axel Rennoch Project Manager axel.rennoch@fokus.fraunhofer.de Phone +49 30 3463-7344 CONTACTS Marc‐Florian Wendland Senior Researcher marc‐florian.wendland@fokus.fraunhofer.de Phone +49 30 3463‐7395